dis.Bytecode.from_traceback()
  • References/Python/Python/Language

classmethod from_traceback(tb) Construct a Bytecode instance from the given traceback, setting current_offset

2025-01-10 15:47:30
dis.show_code()
  • References/Python/Python/Language

dis.show_code(x, *, file=None) Print detailed code object information for the supplied function, method, source code string

2025-01-10 15:47:30
symtable.Symbol.is_parameter()
  • References/Python/Python/Language

is_parameter() Return True if the symbol is a parameter.

2025-01-10 15:47:30
ast.NodeTransformer
  • References/Python/Python/Language

class ast.NodeTransformer A NodeVisitor subclass that walks the abstract syntax tree and allows modification of

2025-01-10 15:47:30
dis.opmap
  • References/Python/Python/Language

dis.opmap Dictionary mapping operation names to bytecodes.

2025-01-10 15:47:30
symtable.Function.get_locals()
  • References/Python/Python/Language

get_locals() Return a tuple containing names of locals in this function.

2025-01-10 15:47:30
parser.expr()
  • References/Python/Python/Language

parser.expr(source) The expr() function parses the parameter source as if it were an input to compile(source

2025-01-10 15:47:30
dis.get_instructions()
  • References/Python/Python/Language

dis.get_instructions(x, *, first_line=None) Return an iterator over the instructions in the supplied function, method, source

2025-01-10 15:47:30
dis.hasfree
  • References/Python/Python/Language

dis.hasfree Sequence of bytecodes that access a free variable (note that ‘free’ in this context refers to names in the current

2025-01-10 15:47:30
dis.distb()
  • References/Python/Python/Language

dis.distb(tb=None, *, file=None) Disassemble the top-of-stack function of a traceback, using the last traceback if none was

2025-01-10 15:47:30