|
Name |
|
Date |
Size |
#Lines |
LOC |
| .. | | - | - |
| bgen/ | | 03-May-2024 | - | 3,264 | 2,546 |
| buildbot/ | | 03-May-2024 | - | 192 | 158 |
| ccbench/ | | 03-May-2024 | - | 610 | 469 |
| compiler/ | | 03-May-2024 | - | 689 | 590 |
| faqwiz/ | | 03-May-2024 | - | 1,627 | 1,297 |
| framer/ | | 03-May-2024 | - | 923 | 724 |
| freeze/ | | 03-May-2024 | - | 1,860 | 1,431 |
| gdb/ | | 03-May-2024 | - | 1,448 | 1,080 |
| i18n/ | | 03-May-2024 | - | 971 | 719 |
| iobench/ | | 03-May-2024 | - | 540 | 450 |
| msi/ | | 03-May-2024 | - | 4,862 | 4,217 |
| pybench/ | | 03-May-2024 | - | 9,425 | 7,384 |
| scripts/ | | 03-May-2024 | - | 10,141 | 7,796 |
| ssl/ | | 03-May-2024 | - | 80 | 65 |
| unicode/ | | 03-May-2024 | - | 3,182 | 2,616 |
| versioncheck/ | | 03-May-2024 | - | 211 | 176 |
| webchecker/ | | 03-May-2024 | - | 2,114 | 1,647 |
| world/ | | 03-May-2024 | - | 638 | 531 |
| README | D | 03-May-2024 | 1.5 KiB | 42 | 30 |
README
1This directory contains a number of Python programs that are useful
2while building or extending Python.
3
4bgen Generate complete extension modules from a
5 description. Still under development!
6 WARNING: bgen has been removed in 3.0.
7
8compiler Tools used to maintain the compiler package in the
9 standard library.
10
11faqwiz FAQ Wizard.
12 See http://www.python.org/cgi-bin/faqw.py
13 for a live example.
14
15freeze Create a stand-alone executable from a Python program.
16
17gdb Python code to be run inside gdb, to make it easier to
18 debug Python itself (by David Malcolm).
19
20i18n Tools for internationalization. pygettext.py
21 parses Python source code and generates .pot files,
22 and msgfmt.py generates a binary message catalog
23 from a catalog in text format.
24
25scripts A number of useful single-file programs, e.g. tabnanny.py
26 by Tim Peters, which checks for inconsistent mixing of
27 tabs and spaces, and 2to3, which converts Python 2 code
28 to Python 3 code.
29
30unicode Tools used to generate unicode database files for
31 Python 2.0 (by Fredrik Lundh).
32
33versioncheck A tool to automate checking whether you have the latest
34 version of a package (by Jack Jansen).
35
36webchecker A link checker for web sites.
37
38world Script to take a list of Internet addresses and print
39 out where in the world those addresses originate from,
40 based on the top-level domain country code found in
41 the address.
42