|
|
|
|
|
__init__(self,
name,
filename,
args=(),
optimized=0,
klass=None) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
getCode(self)
Get a Python code object |
|
|
|
|
|
|
|
|
|
|
flattenGraph(self)
Arrange the blocks in order and resolve jumps |
|
|
|
|
convertArgs(self)
Convert arguments from symbolic to concrete form |
|
|
|
|
sort_cellvars(self)
Sort cellvars in the order of varnames and prune from freevars. |
|
|
|
|
_lookupName(self,
name,
list)
Return index of name in list, appending if necessary |
|
|
|
|
| _convert_LOAD_CONST(self,
arg) |
|
|
|
|
| _convert_LOAD_FAST(self,
arg) |
|
|
|
|
| _convert_STORE_FAST(self,
arg) |
|
|
|
|
| _convert_DELETE_FAST(self,
arg) |
|
|
|
|
| _convert_LOAD_NAME(self,
arg) |
|
|
|
|
|
|
|
| _convert_STORE_NAME(self,
arg) |
|
|
|
|
| _convert_DELETE_NAME(self,
arg) |
|
|
|
|
| _convert_IMPORT_NAME(self,
arg) |
|
|
|
|
| _convert_IMPORT_FROM(self,
arg) |
|
|
|
|
| _convert_STORE_ATTR(self,
arg) |
|
|
|
|
| _convert_LOAD_ATTR(self,
arg) |
|
|
|
|
| _convert_DELETE_ATTR(self,
arg) |
|
|
|
|
| _convert_LOAD_GLOBAL(self,
arg) |
|
|
|
|
| _convert_STORE_GLOBAL(self,
arg) |
|
|
|
|
| _convert_DELETE_GLOBAL(self,
arg) |
|
|
|
|
| _convert_DEREF(self,
arg) |
|
|
|
|
| _convert_LOAD_DEREF(self,
arg) |
|
|
|
|
| _convert_STORE_DEREF(self,
arg) |
|
|
|
|
| _convert_LOAD_CLOSURE(self,
arg) |
|
|
|
|
| _convert_COMPARE_OP(self,
arg) |
|
|
|
|
|
|
|
|
|
|
getConsts(self)
Return a tuple for the const slot of the code object |
|
|
|
Inherited from FlowGraph:
emit,
fixupOrder,
fixupOrderForward,
fixupOrderHonorNext,
getBlocks,
getBlocksInOrder,
getContainedGraphs,
getRoot,
newBlock,
nextBlock,
startBlock,
startExitBlock
|