cpython/Tools
Martin v. Löwis 823725e93c Merged revisions 61846-61847 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r61846 | martin.v.loewis | 2008-03-24 13:57:53 +0100 (Mo, 24 Mär 2008) | 2 lines

  Install 2to3 script.
........
  r61847 | martin.v.loewis | 2008-03-24 14:31:16 +0100 (Mo, 24 Mär 2008) | 2 lines

  Patch #2240: Implement signal.setitimer and signal.getitimer.
........
2008-03-24 13:39:54 +00:00
..
bgen Futher update docs after unbound method removal. 2007-11-27 12:43:08 +00:00
buildbot Bring over external-commit.bat manually, wasn't picked up via svnmerge. 2008-03-20 01:20:22 +00:00
faqwiz Merged revisions 60990-61002 via svnmerge from 2008-02-23 18:30:17 +00:00
framer Convert raise statements in Tools/. 2007-08-22 23:05:06 +00:00
freeze #1535: rename __builtin__ module to builtins. 2007-12-02 09:40:06 +00:00
i18n - Issue #719888: Updated tokenize to use a bytes API. generate_tokens has been 2008-03-18 22:41:35 +00:00
modulator Merged revisions 60990-61002 via svnmerge from 2008-02-23 18:30:17 +00:00
msi Stop including 2to3 in Tools, as it is in Lib now. 2008-03-24 00:52:58 +00:00
pybench #2435: missing file in pybench 2008-03-20 21:22:04 +00:00
pynche Merged revisions 60990-61002 via svnmerge from 2008-02-23 18:30:17 +00:00
scripts Merged revisions 61846-61847 via svnmerge from 2008-03-24 13:39:54 +00:00
ssl Merged revisions 60990-61002 via svnmerge from 2008-02-23 18:30:17 +00:00
unicode Merged revisions 60990-61002 via svnmerge from 2008-02-23 18:30:17 +00:00
versioncheck Kill execfile(), use exec() instead 2007-08-12 00:43:29 +00:00
webchecker Merged revisions 60990-61002 via svnmerge from 2008-02-23 18:30:17 +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 Get rid of old IDLE. Lib/idlelib rules! 2003-06-14 00:08:37 +00:00

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!

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.