|
Name |
|
Date |
Size |
#Lines |
LOC |
| .. | | - | - |
| buildbot/ | | 25-Apr-2025 | - | 194 | 152 |
| c-analyzer/ | | 25-Apr-2025 | - | 14,927 | 12,448 |
| ccbench/ | | 25-Apr-2025 | - | 607 | 468 |
| clinic/ | | 25-Apr-2025 | - | 5,489 | 4,129 |
| demo/ | | 25-Apr-2025 | - | 2,733 | 2,209 |
| freeze/ | | 25-Apr-2025 | - | 2,102 | 1,598 |
| gdb/ | | 25-Apr-2025 | - | 2,144 | 1,628 |
| i18n/ | | 25-Apr-2025 | - | 1,086 | 839 |
| importbench/ | | 25-Apr-2025 | - | 252 | 215 |
| iobench/ | | 25-Apr-2025 | - | 557 | 466 |
| msi/ | | 25-Apr-2025 | - | 9,183 | 7,432 |
| nuget/ | | 25-Apr-2025 | - | 238 | 207 |
| peg_generator/ | | 25-Apr-2025 | - | 21,479 | 20,509 |
| scripts/ | | 25-Apr-2025 | - | 13,617 | 10,571 |
| ssl/ | | 25-Apr-2025 | - | 676 | 547 |
| stringbench/ | | 25-Apr-2025 | - | 1,552 | 1,272 |
| tz/ | | 25-Apr-2025 | - | 82 | 70 |
| unicode/ | | 25-Apr-2025 | - | 54,691 | 53,863 |
| unittestgui/ | | 25-Apr-2025 | - | 495 | 375 |
| wasm/ | | 25-Apr-2025 | - | 2,382 | 1,912 |
| README | D | 25-Apr-2025 | 1.8 KiB | 47 | 29 |
README
1This directory contains a number of Python programs that are useful
2while building or extending Python.
3
4buildbot Batchfiles for running on Windows buildbot workers.
5
6ccbench A Python threads-based concurrency benchmark. (*)
7
8demo Several Python programming demos.
9
10freeze Create a stand-alone executable from a Python program.
11
12gdb Python code to be run inside gdb, to make it easier to
13 debug Python itself (by David Malcolm).
14
15i18n Tools for internationalization. pygettext.py
16 parses Python source code and generates .pot files,
17 and msgfmt.py generates a binary message catalog
18 from a catalog in text format.
19
20iobench Benchmark for the new Python I/O system. (*)
21
22msi Support for packaging Python as an MSI package on Windows.
23
24parser Un-parsing tool to generate code from an AST.
25
26peg_generator PEG-based parser generator (pegen) used for new parser.
27
28scripts A number of useful single-file programs, e.g. tabnanny.py
29 by Tim Peters, which checks for inconsistent mixing of
30 tabs and spaces, and 2to3, which converts Python 2 code
31 to Python 3 code.
32
33stringbench A suite of micro-benchmarks for various operations on
34 strings (both 8-bit and unicode). (*)
35
36unicode Tools for generating unicodedata and codecs from unicode.org
37 and other mapping files (by Fredrik Lundh, Marc-Andre Lemburg
38 and Martin von Loewis).
39
40unittestgui A Tkinter based GUI test runner for unittest, with test
41 discovery.
42
43
44(*) A generic benchmark suite is maintained separately at https://github.com/python/performance
45
46Note: The pynche color editor has moved to https://gitlab.com/warsaw/pynche
47