cpython/Tools
native-api b18f098357 bpo-33711: Fix license generation error in installer build script (GH-7241) 2018-06-24 17:50:23 -05:00
..
audiopy
bgen Issue #27171: Fix typos in documentation, code comments, and tests 2016-06-02 10:35:44 +00:00
buildbot Tools/buildbot/test.bat: add --slowest option (#2552) 2017-07-03 23:37:14 +02:00
ccbench Issue #7993: Add a test of IO packet processing bandwidth to ccbench. 2010-03-13 21:21:30 +00:00
compiler Issue #27076: Doc, comment and test function name spelling fixes 2016-05-26 05:28:50 +00:00
faqwiz normalize shebang lines to #!/usr/bin/env python 2010-03-11 22:33:25 +00:00
framer
freeze Issue #27566: Fix clean target in freeze makefile (patch by Lisa Roach) 2016-09-09 18:38:10 -07:00
gdb bpo-32962: Backport python-gdb.py and test_gdb.py from master (GH-7726) 2018-06-15 23:59:56 +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 Fix a missing encoding argument when opening a text file in some of iobench's subtests. 2011-10-08 19:41:34 +02:00
msi bpo-33711: Fix license generation error in installer build script (GH-7241) 2018-06-24 17:50:23 -05:00
nuget [2.7] bpo-30450: Pull Windows dependencies from GitHub rather than SVN (GH-1783) (GH-3306) 2017-09-04 16:05:33 -07:00
pybench Issue #19936: Added executable bits or shebang lines to Python scripts which 2014-01-16 18:59:17 +02:00
pynche #18803: fix more typos. Patch by Févry Thibault. 2013-08-26 01:31:30 +03:00
scripts [2.7] remove hg support from patchcheck (GH-7440). (GH-7444) 2018-06-05 22:55:10 -07:00
ssl [2.7] bpo-33127: Compatibility patch for LibreSSL 2.7.0 (GH-6210) (GH-6215) 2018-03-24 19:34:15 +01: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 In a number of places code still revers 2010-05-05 19:09:31 +00:00
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