cpython/Tools
Benjamin Peterson efb06b0d91 Merged revisions 69811,69947 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r69811 | collin.winter | 2009-02-20 13:30:41 -0600 (Fri, 20 Feb 2009) | 2 lines

  Issue 5176: special-case string formatting in BINARY_MODULO implementation. This shows a modest (1-3%) speed-up in templating systems, for example.
........
  r69947 | jeffrey.yasskin | 2009-02-24 16:48:34 -0600 (Tue, 24 Feb 2009) | 3 lines

  Tools/scripts/analyze_dxp.py, a module with some helper functions to
  analyze the output of sys.getdxp().
........
2009-02-26 18:55:48 +00:00
..
buildbot Merged revisions 64387 via svnmerge from 2008-06-18 22:39:25 +00:00
faqwiz Merged revisions 64722,64729,64753,64845-64846,64849,64871,64880-64882,64885,64888,64897,64900-64901,64915,64926-64929,64938-64941,64944,64961,64966,64973 via svnmerge from 2008-07-16 12:55:28 +00:00
framer Issue #1717, continued: Doc fixes and other cleanup related 2009-02-02 21:29:40 +00:00
freeze #2879: rename _winreg to winreg. 2008-05-25 07:45:51 +00:00
i18n More 2to3 fixes in the Tools directory. Fixes #2893. 2008-05-16 17:02:34 +00:00
modulator More 2to3 fixes in the Tools directory. Fixes #2893. 2008-05-16 17:02:34 +00:00
msi Merged revisions 69415,69591,69593 via svnmerge from 2009-02-20 04:09:19 +00:00
pybench Issue #4704: remove use of cmp() in pybench, bump its version number to 2.1, 2009-02-07 17:13:31 +00:00
pynche More 2to3 fixes in the Tools directory. Fixes #2893. 2008-05-16 17:02:34 +00:00
scripts Merged revisions 69811,69947 via svnmerge from 2009-02-26 18:55:48 +00:00
ssl Merged revisions 60990-61002 via svnmerge from 2008-02-23 18:30:17 +00:00
unicode Issue #1717: Remove cmp. Stage 1: remove all uses of cmp and __cmp__ from 2009-01-27 18:17:45 +00:00
versioncheck More old urllib usage. 2008-06-23 11:45:20 +00:00
webchecker More old urllib usage. 2008-06-23 11:45:20 +00:00
world Update to the world tool for Python 3. Provided by quentin.gallet-gilles via 2007-12-20 15:55:58 +00:00
README add notes about the removal of bgen 2008-06-01 18:50:38 +00: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.

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.

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.

modulator	Interactively generate boiler plate for an extension
		module.	 Works easiest if you have Tk.

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.

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.