H A D | codeobject.c | 172 int nlocals = 0; in get_localsplus_counts() local 180 nlocals += 1; in get_localsplus_counts() 194 *pnlocals = nlocals; in get_localsplus_counts() 270 * Note that totalargs = nlocals - nplainlocals. We check nplainlocals in _PyCode_Validate() 272 int nlocals; in _PyCode_Validate() local 274 &nlocals, NULL, NULL, NULL); in _PyCode_Validate() 275 int nplainlocals = nlocals - in _PyCode_Validate() 292 int nlocals, nplaincellvars, ncellvars, nfreevars; in init_code() local 294 &nlocals, &nplaincellvars, &ncellvars, &nfreevars); in init_code() 329 co->co_nlocals = nlocals; in init_code() 498 PyCode_NewWithPosOnlyArgs(int argcount, int posonlyargcount, int kwonlyargcount, int nlocals, int stacksize, int flags, PyObject *code, PyObject *consts, PyObject *names, PyObject *varnames, PyObject *freevars, PyObject *cellvars, PyObject *filename, PyObject *name, PyObject *qualname, int firstlineno, PyObject *linetable, PyObject *exceptiontable) PyCode_NewWithPosOnlyArgs() argument 622 PyCode_New(int argcount, int kwonlyargcount, int nlocals, int stacksize, int flags, PyObject *code, PyObject *consts, PyObject *names, PyObject *varnames, PyObject *freevars, PyObject *cellvars, PyObject *filename, PyObject *name, PyObject *qualname, int firstlineno, PyObject *linetable, PyObject *exceptiontable) PyCode_New() argument 1522 code_new_impl(PyTypeObject *type, int argcount, int posonlyargcount, int kwonlyargcount, int nlocals, int stacksize, int flags, PyObject *code, PyObject *consts, PyObject *names, PyObject *varnames, PyObject *filename, PyObject *name, PyObject *qualname, int firstlineno, PyObject *linetable, PyObject *exceptiontable, PyObject *freevars, PyObject *cellvars) code_new_impl() argument [all...] |