Home | History | Annotate | Download | only in python2.7

Lines Matching full:_symtable

3 import _symtable
4 from _symtable import (USE, DEF_GLOBAL, DEF_LOCAL, DEF_PARAM,
13 raw = _symtable.symtable(code, filename, compile_type)
24 if table.type == _symtable.TYPE_FUNCTION:
26 if table.type == _symtable.TYPE_CLASS:
61 if self._table.type == _symtable.TYPE_MODULE:
63 if self._table.type == _symtable.TYPE_FUNCTION:
65 if self._table.type == _symtable.TYPE_CLASS:
80 return bool(self._table.type == _symtable.TYPE_FUNCTION
187 return bool(self.__flags & _symtable.USE)