cpython/Tools/compiler
Tim Peters ca4d08b6d3 NodeInfo.__gen_init(): Fiddle so that reindent.py is
happy with the output as-is.  This incidentally also
gets rid of "an extra" blank line at the end of the output
block that probably wasn't intended (although it doesn't
matter one way or the other).
2006-03-09 22:31:45 +00:00
..
ACKS
README
ast.txt Update for absolute/relative imports and ifelse-expressions. 2006-03-03 18:11:37 +00:00
astgen.py NodeInfo.__gen_init(): Fiddle so that reindent.py is 2006-03-09 22:31:45 +00:00
compile.py Whitespace normalization, via reindent.py. 2004-07-18 06:16:08 +00:00
demo.py Whitespace normalization, via reindent.py. 2004-07-18 06:16:08 +00:00
dumppyc.py Whitespace normalization. 2005-12-25 23:18:31 +00:00
regrtest.py PEP-0318, @decorator-style. In Guido's words: 2004-08-02 06:10:11 +00:00
stacktest.py

README

This directory contains support tools for the Python compiler package,
which is now part of the standard library.

compile.py	Demo that compiles a Python module into a .pyc file
		using the pure-Python compiler code.

demo.py		Prints the names of all the methods defined in a module,
		as a demonstration of walking through the abstract syntax
		tree produced by the parser.

dumppyc.py	Dumps the contents of a .pyc file, printing 
		the attributes of the code object followed by a 
		code disassembly.

regrtest.py	Runs the Python test suite using bytecode generated 
		by the pure-Python compiler code instead of the
		builtin compiler.