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

dis() Return a formatted view of the bytecode operations (the same as printed by dis.dis(), but returned as a multi-line

2025-01-10 15:47:30
ast.NodeVisitor.visit()
  • References/Python/Python/Language

visit(node) Visit a node. The default implementation calls the method called self.visit_classname where

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

get_name() Return the symbol’s name.

2025-01-10 15:47:30
pyclbr.Class.module
  • References/Python/Python/Language

Class.module The name of the module defining the class described by the class descriptor.

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

get_globals() Return a tuple containing names of globals in this function.

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

is_imported() Return True if the symbol is created from an import statement.

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

tokenize.untokenize(iterable) Converts tokens back into Python source code. The iterable must return sequences with

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

is_free() Return True if the symbol is referenced in its block, but not assigned to.

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

class dis.Bytecode(x, *, first_line=None, current_offset=None) Analyse the bytecode corresponding to a function, generator,

2025-01-10 15:47:30
symtable.Class
  • References/Python/Python/Language

class symtable.Class A namespace of a class. This class inherits SymbolTable.

2025-01-10 15:47:30