1
Fork 0
cpython/Tools
Benjamin Peterson ba8a2bcebf
[2.7] closes bpo-40125: Update multissltests.py to use OpenSSL 1.1.1f. (GH-19251)
(cherry picked from commit cd16661f90)
2020-03-31 20:52:23 -05:00
..
audiopy
bgen
buildbot Tools/buildbot/test.bat: add --slowest option (#2552) 2017-07-03 23:37:14 +02:00
ccbench
compiler
faqwiz
framer
freeze Issue #27566: Fix clean target in freeze makefile (patch by Lisa Roach) 2016-09-09 18:38:10 -07:00
gdb bpo-34989: python-gdb.py: fix current_line_num() (GH-9889) (GH-9899) 2018-10-16 00:06:23 +02:00
i18n [2.7] bpo-31920: Fixed handling directories as arguments in the ``pygettext`` script. (GH-6259) (GH-6436) 2018-04-10 11:03:52 +03:00
iobench
msi Add product codes until the end of time. (GH-11901) 2019-02-16 16:42:48 -08:00
nuget Work around Path.glob() issue when creating nuget package (GH-16855) 2019-10-19 18:25:35 -07:00
pybench
pynche
scripts [2.7] bpo-14546: Fix the argument handling in Tools/scripts/lll.py (GH-13026) (GH-13063) 2019-05-02 15:29:21 -04:00
ssl [2.7] closes bpo-40125: Update multissltests.py to use OpenSSL 1.1.1f. (GH-19251) 2020-03-31 20:52:23 -05:00
unicode [2.7] bpo-27425: Be more explicit in .gitattributes (GH-840) (GH-2086) 2017-06-11 14:19:39 -05:00
versioncheck
webchecker
world
README [2.7] Change some mercurial/ hg.python.org references. (#8) (#183) 2017-02-19 17:49:54 -08:00

README

This directory contains a number of Python programs that are useful
while building or extending Python.

audiopy		Audiopy is a program to control the Solaris audio
		device, allowing you to choose both the input and
		output devices, and to set the output volume, that can
		be run either as a command-line script, or as a
		Tkinter application.

bgen		Generate complete extension modules from a
		description.  Still under development!
		WARNING: bgen has been removed in 3.0.

compiler	Tools used to maintain the compiler package in the
		standard library.

faqwiz		FAQ Wizard.
		See http://www.python.org/cgi-bin/faqw.py
		for a live example.

freeze		Create a stand-alone executable from a Python program.

gdb             Python code to be run inside gdb, to make it easier to
                debug Python itself (by David Malcolm).

i18n		Tools for internationalization. pygettext.py 
		parses Python source code and generates .pot files,
		and msgfmt.py generates a binary message catalog 
		from a catalog in text format.

pynche		A Tkinter-based color editor.

scripts         A number of useful single-file programs, e.g. tabnanny.py
                by Tim Peters, which checks for inconsistent mixing of
                tabs and spaces, and 2to3, which converts Python 2 code
                to Python 3 code.

unicode		Tools used to generate unicode database files for
		Python 2.0 (by Fredrik Lundh).

versioncheck	A tool to automate checking whether you have the latest
		version of a package (by Jack Jansen).

webchecker	A link checker for web sites.

world		Script to take a list of Internet addresses and print
		out where in the world those addresses originate from,
		based on the top-level domain country code found in
		the address. 

A generic benchmark suite is maintained separately at https://github.com/python/performance