Guido van Rossum | 5f85880 | 1995-03-02 15:51:27 +0000 | [diff] [blame] | 1 | This directory contains a number of Python programs that are useful |
| 2 | while building or extending Python. |
| 3 | |
Andrew M. Kuchling | 5cca695 | 2010-07-04 20:47:00 +0000 | [diff] [blame^] | 4 | faqwiz FAQ Wizard: a CGI script for a user-editable FAQ. |
Guido van Rossum | a11b041 | 1997-08-28 02:41:33 +0000 | [diff] [blame] | 5 | |
Guido van Rossum | 5f85880 | 1995-03-02 15:51:27 +0000 | [diff] [blame] | 6 | freeze Create a stand-alone executable from a Python program. |
| 7 | |
Benjamin Peterson | 6a6666a | 2010-04-11 21:49:28 +0000 | [diff] [blame] | 8 | gdb Python code to be run inside gdb, to make it easier to |
| 9 | debug Python itself (by David Malcolm). |
| 10 | |
Andrew M. Kuchling | 5dd064a | 2001-08-06 19:33:52 +0000 | [diff] [blame] | 11 | i18n Tools for internationalization. pygettext.py |
| 12 | parses Python source code and generates .pot files, |
| 13 | and msgfmt.py generates a binary message catalog |
| 14 | from a catalog in text format. |
Andrew M. Kuchling | ce2f403 | 2001-08-06 18:55:22 +0000 | [diff] [blame] | 15 | |
Andrew M. Kuchling | 5dd064a | 2001-08-06 19:33:52 +0000 | [diff] [blame] | 16 | pynche A Tkinter-based color editor. |
Andrew M. Kuchling | ce2f403 | 2001-08-06 18:55:22 +0000 | [diff] [blame] | 17 | |
Guido van Rossum | 9cd9fbb | 1998-04-10 20:58:53 +0000 | [diff] [blame] | 18 | scripts A number of useful single-file programs, e.g. tabnanny.py |
| 19 | (by Tim Peters), which checks for inconsistent mixing |
| 20 | of tabs and spaces. |
Guido van Rossum | a11b041 | 1997-08-28 02:41:33 +0000 | [diff] [blame] | 21 | |
Fredrik Lundh | e9133f7 | 2000-09-25 17:59:57 +0000 | [diff] [blame] | 22 | unicode Tools used to generate unicode database files for |
| 23 | Python 2.0 (by Fredrik Lundh). |
| 24 | |
Guido van Rossum | c4b9af7 | 1997-12-23 19:03:42 +0000 | [diff] [blame] | 25 | versioncheck A tool to automate checking whether you have the latest |
| 26 | version of a package (by Jack Jansen). |
| 27 | |
Andrew M. Kuchling | 5dd064a | 2001-08-06 19:33:52 +0000 | [diff] [blame] | 28 | world Script to take a list of Internet addresses and print |
| 29 | out where in the world those addresses originate from, |
| 30 | based on the top-level domain country code found in |
| 31 | the address. |