cpython/Tools/compiler
Georg Brandl 88fc6646d1 * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes.
* Fix some docstrings and one Print -> print.
* Fix test_{class,code,descrtut,dis,extcall,parser,popen,pkg,subprocess,syntax,traceback}.
  These were the ones that generated code with a print statement.
  In most remaining failing tests there's an issue with the soft space.
2007-02-09 21:28:07 +00:00
..
ACKS
README
ast.txt * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes. 2007-02-09 21:28:07 +00:00
astgen.py PEP 3107 - Function Annotations thanks to Tony Lownds 2006-12-28 06:47:50 +00:00
compile.py SF patch 1631942 by Collin Winter: 2007-01-10 16:19:56 +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 SF patch 1631942 by Collin Winter: 2007-01-10 16:19:56 +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.