cpython/Tools
Victor Stinner 150016fd24 Issue #8559: improve unicode support of (gdb) libpython.py
* Escape non printable characters (use locale.getpreferredencoding())
 * Fix support of surrogate pairs
 * test_gdb.py: use ascii() instead of repr() in gdb program arguments to avoid
   encoding issues
 * Fix test_strings() of test_gdb.py for encoding different than UTF-8
   (eg. ACSII)
2010-05-19 23:04:56 +00:00
..
buildbot Merged revisions 77226 via svnmerge from 2010-01-02 10:06:19 +00:00
ccbench Merged revisions 78939 via svnmerge from 2010-03-13 21:27:21 +00:00
faqwiz convert shebang lines: python -> python3 2010-03-11 22:53:45 +00:00
framer Issue #1717, continued: Doc fixes and other cleanup related 2009-02-02 21:29:40 +00:00
freeze convert shebang lines: python -> python3 2010-03-11 22:53:45 +00:00
gdb Issue #8559: improve unicode support of (gdb) libpython.py 2010-05-19 23:04:56 +00:00
i18n Merged revisions 79977 via svnmerge from 2010-04-11 22:35:34 +00:00
iobench Merged revisions 77599-77601 via svnmerge from 2010-01-18 21:20:53 +00:00
msi Recorded merge of revisions 81029 via svnmerge from 2010-05-09 15:52:27 +00:00
pybench Merged revisions 75264,75268,75293,75318,75391-75392,75436,75478,75971,76003,76058,76140-76141,76231,76380,76428-76429 via svnmerge from 2009-11-25 17:46:26 +00:00
pynche More 2to3 fixes in the Tools directory. Fixes #2893. 2008-05-16 17:02:34 +00:00
scripts Merged revisions 80849 via svnmerge from 2010-05-06 01:09:27 +00:00
ssl convert shebang lines: python -> python3 2010-03-11 22:53:45 +00:00
unicode Merged revisions 79494,79496 via svnmerge from 2010-03-30 19:34:18 +00:00
versioncheck More old urllib usage. 2008-06-23 11:45:20 +00:00
webchecker Remove traces of MacOS9 support. 2010-05-05 19:11:21 +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 Merged revisions 79548,79557,79616-79617,79716,79778,79795,79803,79896 via svnmerge from 2010-04-11 21:49:28 +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.

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.

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.