cpython/Tools/compiler
Fred Drake 834a85a235 Use the "howto" document class rather than the "manual" class.
Remove the module index; there aren't enough modules documented yet
for this to make sense.

Add a couple more index entries, fixed a few typos, and adjusted a few
more things for consistency.
2001-08-15 17:01:34 +00:00
..
compiler Fix typo in astgen script 2001-08-14 21:18:30 +00:00
doc Use the "howto" document class rather than the "manual" class. 2001-08-15 17:01:34 +00:00
README Added README to this directory 2001-08-08 19:10:11 +00:00
ast.txt Add Yield node 2001-08-14 18:57:43 +00:00
astgen.py Fix typo in astgen script 2001-08-14 21:18:30 +00:00
compile.py add -d option that dumps entire AST before compiling 2000-10-13 21:59:32 +00:00
demo.py This script demonstrates use of the visitor interface of the compiler 2000-07-25 16:43:23 +00:00
dumppyc.py read in a .pyc file and disassemble the code objects 2000-10-09 14:35:24 +00:00
regrtest.py run the std regression test suite using bytecode produced by the compiler 2000-10-13 22:00:13 +00:00
setup.py Update e-mail address 2001-08-13 15:10:54 +00:00

README

This directory contains modules for a a Python source to bytecode compiler
written in pure Python.	 To install the compiler modules so they're
available for use by third-party Python software, run 'python setup.py
install'.

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.

setup.py	Setup file for installing the compiler code as a package.