• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

buildbot/H06-Dec-2021-194152

c-analyzer/H06-Dec-2021-14,78812,381

ccbench/H06-Dec-2021-607468

clinic/H06-Dec-2021-5,3323,989

demo/H06-Dec-2021-2,7332,209

freeze/H03-May-2022-1,7831,346

gdb/H06-Dec-2021-1,9611,470

i18n/H06-Dec-2021-1,085838

importbench/H06-Dec-2021-252215

iobench/H06-Dec-2021-557466

msi/H03-May-2022-8,3766,796

nuget/H06-Dec-2021-238207

peg_generator/H06-Dec-2021-21,22620,303

pynche/H03-May-2022-2,8282,159

scripts/H06-Dec-2021-10,7768,221

ssl/H06-Dec-2021-675546

stringbench/H06-Dec-2021-1,5521,272

test2to3/H06-Dec-2021-7851

tz/H06-Dec-2021-8270

unicode/H06-Dec-2021-34,74533,925

unittestgui/H03-May-2022-478364

READMEH A D06-Dec-20211.9 KiB4930

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
28pynche          A Tkinter-based color editor.
29
30scripts         A number of useful single-file programs, e.g. tabnanny.py
31                by Tim Peters, which checks for inconsistent mixing of
32                tabs and spaces, and 2to3, which converts Python 2 code
33                to Python 3 code.
34
35stringbench     A suite of micro-benchmarks for various operations on
36                strings (both 8-bit and unicode). (*)
37
38test2to3        A demonstration of how to use 2to3 transparently in setup.py.
39
40unicode         Tools for generating unicodedata and codecs from unicode.org
41                and other mapping files (by Fredrik Lundh, Marc-Andre Lemburg
42                and Martin von Loewis).
43
44unittestgui     A Tkinter based GUI test runner for unittest, with test
45                discovery.
46
47
48(*) A generic benchmark suite is maintained separately at https://github.com/python/performance
49