Home | History | Annotate | only in /external/python/cpython3/Tools
Up to higher level directory
NameDateSize
buildbot/22-Oct-2020
c-globals/22-Oct-2020
ccbench/22-Oct-2020
clinic/22-Oct-2020
demo/22-Oct-2020
freeze/22-Oct-2020
gdb/22-Oct-2020
i18n/22-Oct-2020
importbench/22-Oct-2020
iobench/22-Oct-2020
msi/22-Oct-2020
nuget/22-Oct-2020
parser/22-Oct-2020
pynche/22-Oct-2020
README22-Oct-20201.8K
scripts/22-Oct-2020
ssl/22-Oct-2020
stringbench/22-Oct-2020
test2to3/22-Oct-2020
tz/22-Oct-2020
unicode/22-Oct-2020
unittestgui/22-Oct-2020

README

      1 This directory contains a number of Python programs that are useful
      2 while building or extending Python.
      3 
      4 buildbot        Batchfiles for running on Windows buildslaves.
      5 
      6 ccbench         A Python threads-based concurrency benchmark. (*)
      7 
      8 demo            Several Python programming demos.
      9 
     10 freeze          Create a stand-alone executable from a Python program.
     11 
     12 gdb             Python code to be run inside gdb, to make it easier to
     13                 debug Python itself (by David Malcolm).
     14 
     15 i18n            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 
     20 iobench         Benchmark for the new Python I/O system. (*)
     21 
     22 msi             Support for packaging Python as an MSI package on Windows.
     23 
     24 parser          Un-parsing tool to generate code from an AST.
     25 
     26 pynche          A Tkinter-based color editor.
     27 
     28 scripts         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 
     33 stringbench     A suite of micro-benchmarks for various operations on
     34                 strings (both 8-bit and unicode). (*)
     35 
     36 test2to3        A demonstration of how to use 2to3 transparently in setup.py.
     37 
     38 unicode         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 
     42 unittestgui     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