mirror of
https://github.com/python/cpython.git
synced 2025-11-03 03:22:27 +00:00
svn+ssh://svn.python.org/python/branches/py3k ........ r85450 | georg.brandl | 2010-10-14 08:35:53 +0200 (Do, 14 Okt 2010) | 1 line #7642: update to os.system() docs. ........ r85451 | georg.brandl | 2010-10-14 08:41:42 +0200 (Do, 14 Okt 2010) | 1 line #3865: add note about benchmarking with profilers, and move licensing stuff to bottom of document. ........ r85452 | georg.brandl | 2010-10-14 08:43:22 +0200 (Do, 14 Okt 2010) | 1 line #10046: small correction to atexit docs. ........ r85453 | georg.brandl | 2010-10-14 08:46:08 +0200 (Do, 14 Okt 2010) | 1 line #6825: small correction to split() docs. ........ r85454 | georg.brandl | 2010-10-14 08:48:47 +0200 (Do, 14 Okt 2010) | 1 line Mention 2to3. ........ r85455 | georg.brandl | 2010-10-14 08:59:45 +0200 (Do, 14 Okt 2010) | 1 line #1710703: write zipfile structures also in the case of closing a new, but empty, archive. ........ r85460 | georg.brandl | 2010-10-14 09:24:28 +0200 (Do, 14 Okt 2010) | 1 line #9964: fix running test_import under -O or -OO. ........ r85461 | georg.brandl | 2010-10-14 09:29:08 +0200 (Do, 14 Okt 2010) | 1 line #9964: fix lib2to3 fixer fix_operator when running under -OO. ........ r85462 | georg.brandl | 2010-10-14 09:32:52 +0200 (Do, 14 Okt 2010) | 1 line #9964: fix running test_xml_etree under -OO. ........ r85463 | georg.brandl | 2010-10-14 09:34:56 +0200 (Do, 14 Okt 2010) | 1 line Better check for "any optimize option given". ........ r85464 | georg.brandl | 2010-10-14 09:42:27 +0200 (Do, 14 Okt 2010) | 1 line #9964: fix running test_compileall under -O and -OO. ........ r85465 | georg.brandl | 2010-10-14 10:08:56 +0200 (Do, 14 Okt 2010) | 1 line #9964: fix running test_cmd_line_script under -O and -OO. ........
45 lines
1.6 KiB
Text
45 lines
1.6 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.
|
|
|
|
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, 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.
|