Using bytecode, not code objects

Terry Reedy tjreedy at udel.edu
Mon Feb 6 20:04:31 EST 2006


"Raymond Hettinger" <python at rcn.com> wrote in message 
news:1139263624.553961.236730 at g14g2000cwa.googlegroups.com...
>
> Fabiano Sidler wrote:
>> with pdb (which I'm surely not using as neatly as it could be). Or is
>> there any documentation on it I couldn't find?
>
> The pysassem module is part of the compiler package:
>
>   http://docs.python.org/lib/compiler.html

The 2.4 docs, which the above links to, only has sections on modules 
compiler, compiler.ast, and compiler.visitor and not on .consts, .future, 
.misc, .pyassem, .pycodegen, .symbols, and .transformer.  However,

import compiler
help(compiler.ast)

gives a few pages of info derived from the module.

Terry Jan Reedy






More information about the Python-list mailing list