mirror of
https://github.com/python/cpython.git
synced 2026-01-03 22:12:27 +00:00
svn+ssh://pythondev@svn.python.org/python/trunk ........ r78338 | andrew.kuchling | 2010-02-22 15:04:02 -0600 (Mon, 22 Feb 2010) | 4 lines Remove Tools/modulator, a reference to it in the docs, and a screenshot of it. (I asked the BDFL first, and he approved removing it. The last actual bugfix to Tools/modulator was in 2001; since then all changes have been search-and-replace: string methods, whitespace fixes, etc.) ........ r78345 | andrew.kuchling | 2010-02-22 17:10:52 -0600 (Mon, 22 Feb 2010) | 1 line #7706: DONT_HAVE_ERRNO_H is no longer defined by configure (after rev.46819). ........ r78346 | andrew.kuchling | 2010-02-22 17:12:00 -0600 (Mon, 22 Feb 2010) | 1 line #7706: add include guards where they're missing; required for Windows CE ........ r78561 | andrew.kuchling | 2010-03-01 13:51:43 -0600 (Mon, 01 Mar 2010) | 1 line #7191: describe more details of wbits parameter ........ r78562 | andrew.kuchling | 2010-03-01 14:11:57 -0600 (Mon, 01 Mar 2010) | 1 line #7637: avoid repeated-concatenation antipattern in example ........ r78566 | barry.warsaw | 2010-03-01 15:46:51 -0600 (Mon, 01 Mar 2010) | 4 lines Manually copy patch for bug 7250 from the release26-maint branch. I suck because I did this in the wrong order and couldn't smack svnmerge into submission. ........ r78574 | benjamin.peterson | 2010-03-01 17:25:13 -0600 (Mon, 01 Mar 2010) | 1 line remove CVS id ........ r78581 | michael.foord | 2010-03-02 08:22:15 -0600 (Tue, 02 Mar 2010) | 1 line Link correction in documentation. ........ r78634 | benjamin.peterson | 2010-03-03 15:28:25 -0600 (Wed, 03 Mar 2010) | 1 line rephrase ........ r78660 | dirkjan.ochtman | 2010-03-04 13:21:53 -0600 (Thu, 04 Mar 2010) | 4 lines Try to fix buildbot breakage from r78384. Thanks bitdancer and briancurtin for the help. ........ r78675 | florent.xicluna | 2010-03-04 19:12:14 -0600 (Thu, 04 Mar 2010) | 2 lines These line should not be there. ........
41 lines
1.4 KiB
Text
41 lines
1.4 KiB
Text
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.
|
|
|
|
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.
|