~malept/ubuntu/lucid/python2.6/dev-dependency-fix

« back to all changes in this revision

Viewing changes to Tools/compiler/README

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2009-02-13 12:51:00 UTC
  • Revision ID: james.westby@ubuntu.com-20090213125100-uufgcb9yeqzujpqw
Tags: upstream-2.6.1
ImportĀ upstreamĀ versionĀ 2.6.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
This directory contains support tools for the Python compiler package,
 
2
which is now part of the standard library.
 
3
 
 
4
compile.py      Demo that compiles a Python module into a .pyc file
 
5
                using the pure-Python compiler code.
 
6
 
 
7
demo.py         Prints the names of all the methods defined in a module,
 
8
                as a demonstration of walking through the abstract syntax
 
9
                tree produced by the parser.
 
10
 
 
11
dumppyc.py      Dumps the contents of a .pyc file, printing 
 
12
                the attributes of the code object followed by a 
 
13
                code disassembly.
 
14
 
 
15
regrtest.py     Runs the Python test suite using bytecode generated 
 
16
                by the pure-Python compiler code instead of the
 
17
                builtin compiler.
 
18