cpython/Tools/README

34 lines
1.1 KiB
Plaintext
Raw Normal View History

1995-03-02 11:51:27 -04:00
This directory contains a number of Python programs that are useful
while building or extending Python.
1997-08-27 23:41:33 -03:00
faqwiz FAQ Wizard.
See http://www.python.org/cgi-bin/faqw.py
1997-08-27 23:41:33 -03:00
for a live example.
1995-03-02 11:51:27 -04:00
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.
1995-03-02 11:51:27 -04:00
modulator Interactively generate boiler plate for an extension
module. Works easiest if you have Tk.
1995-03-02 11:51:27 -04:00
pynche A Tkinter-based color editor.
Merged revisions 85450-85455,85460-85465 via svnmerge from 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. ........
2010-11-26 04:37:46 -04:00
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.
1997-08-27 23:41:33 -03:00
unicode Tools used to generate unicode database files for
Python 2.0 (by Fredrik Lundh).
1997-08-27 23:41:33 -03:00
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.