python-2.7.6/include/symtable.h Source File
Go to the documentation of this file.
51 #define PySTEntry_Check(op) (Py_TYPE(op) == &PySTEntry_Type)
59 PyAPI_FUNC(
void) PySymtable_Free(struct symtable *);
65 #define DEF_PARAM 2<<1
68 #define DEF_FREE_CLASS 2<<4
69 #define DEF_IMPORT 2<<5
71 #define DEF_BOUND (DEF_LOCAL | DEF_PARAM | DEF_IMPORT)
81 #define GLOBAL_EXPLICIT 2
82 #define GLOBAL_IMPLICIT 3
87 #define OPT_IMPORT_STAR 1
89 #define OPT_BARE_EXEC 4
90 #define OPT_TOPLEVEL 8
93 #define GENERATOR_EXPRESSION 2
struct _symtable_entry * st_top
struct _symtable_entry * st_cur
struct _symtable_entry PySTEntryObject
struct symtable * ste_table
PyAPI_FUNC(int) PyST_GetScope(PySTEntryObject *
PyObject_HEAD PyObject * ste_id
PyAPI_DATA(PyTypeObject) PySTEntry_Type
unsigned ste_returns_value
PyFutureFeatures * st_future
enum _block_type _Py_block_ty