Searched defs:compiler_unit (Results 1 – 2 of 2) sorted by relevance
97 struct compiler_unit { struct98 PySTEntryObject *u_ste;100 PyObject *u_name;105 PyObject *u_consts; /* all constants */106 PyObject *u_names; /* all names */107 PyObject *u_varnames; /* local variables */108 PyObject *u_cellvars; /* cell variables */109 PyObject *u_freevars; /* free variables */111 PyObject *u_private; /* for private name mangling */113 int u_argcount; /* number of arguments for block */[all …]
103 struct compiler_unit { struct104 PySTEntryObject *u_ste;106 PyObject *u_name;107 PyObject *u_qualname; /* dot-separated qualified name (lazy) */108 int u_scope_type;114 PyObject *u_consts; /* all constants */115 PyObject *u_names; /* all names */116 PyObject *u_varnames; /* local variables */117 PyObject *u_cellvars; /* cell variables */118 PyObject *u_freevars; /* free variables */[all …]