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

..--

buildbot/23-Nov-2023-6547

c-globals/23-Nov-2023-982755

ccbench/22-Nov-2023-612472

clinic/23-Nov-2023-4,6373,335

demo/23-Nov-2023-2,7142,194

freeze/23-Nov-2023-1,8461,407

gdb/23-Nov-2023-1,9501,459

i18n/23-Nov-2023-1,022773

importbench/22-Nov-2023-252215

iobench/23-Nov-2023-557466

msi/23-Nov-2023-8,8557,161

nuget/23-Nov-2023-201173

parser/22-Nov-2023-707586

pynche/23-Nov-2023-4,1273,410

scripts/23-Nov-2023-9,3377,097

ssl/23-Nov-2023-558457

stringbench/22-Nov-2023-1,5521,272

test2to3/22-Nov-2023-7851

tz/23-Nov-2023-8270

unicode/23-Nov-2023-3,6633,030

unittestgui/22-Nov-2023-496376

READMED23-Nov-20231.8 KiB4729

README

1This directory contains a number of Python programs that are useful
2while building or extending Python.
3
4buildbot        Batchfiles for running on Windows buildslaves.
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
26pynche          A Tkinter-based color editor.
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
36test2to3        A demonstration of how to use 2to3 transparently in setup.py.
37
38unicode         Tools for generating unicodedata and codecs from unicode.org
39                and other mapping files (by Fredrik Lundh, Marc-Andre Lemburg
40                and Martin von Loewis).
41
42unittestgui     A Tkinter based GUI test runner for unittest, with test
43                discovery.
44
45
46(*) A generic benchmark suite is maintained separately at https://github.com/python/performance
47