Searched refs:nlocals (Results 1 – 7 of 7) sorted by relevance
/third_party/python/Objects/clinic/ |
D | codeobject.c.h | 15 int kwonlyargcount, int nlocals, int stacksize, int flags, 28 int nlocals; in code_new() local 61 nlocals = _PyLong_AsInt(PyTuple_GET_ITEM(args, 3)); in code_new() 62 if (nlocals == -1 && PyErr_Occurred()) { in code_new() 135 …return_value = code_new_impl(type, argcount, posonlyargcount, kwonlyargcount, nlocals, stacksize, … in code_new()
|
/third_party/python/Objects/ |
D | codeobject.c | 118 int nlocals, int stacksize, int flags, in PyCode_NewWithPosOnlyArgs() argument 130 kwonlyargcount < 0 || nlocals < 0 || in PyCode_NewWithPosOnlyArgs() 240 co->co_nlocals = nlocals; in PyCode_NewWithPosOnlyArgs() 276 int nlocals, int stacksize, int flags, in PyCode_New() argument 282 return PyCode_NewWithPosOnlyArgs(argcount, 0, kwonlyargcount, nlocals, in PyCode_New() 550 int kwonlyargcount, int nlocals, int stacksize, int flags, in code_new_impl() argument 565 kwonlyargcount, nlocals, stacksize, flags) < 0) { in code_new_impl() 589 if (nlocals < 0) { in code_new_impl() 617 nlocals, stacksize, flags, in code_new_impl()
|
/third_party/python/Doc/c-api/ |
D | code.rst | 36 .. c:function:: PyCodeObject* PyCode_New(int argcount, int kwonlyargcount, int nlocals, int stacksi… 43 …thPosOnlyArgs(int argcount, int posonlyargcount, int kwonlyargcount, int nlocals, int stacksize, i…
|
/third_party/python/Python/ |
D | marshal.c | 1307 int nlocals; in r_object() local 1338 nlocals = (int)r_long(p); in r_object() 1380 nlocals, stacksize, flags, in r_object()
|
D | compile.c | 6877 Py_ssize_t nlocals; in makecode() local 6902 nlocals = PyDict_GET_SIZE(c->u->u_varnames); in makecode() 6903 assert(nlocals < INT_MAX); in makecode() 6904 nlocals_int = Py_SAFE_DOWNCAST(nlocals, Py_ssize_t, int); in makecode()
|
/third_party/python/Doc/library/ |
D | types.rst | 153 ….. audit-event:: code.__new__ code,filename,name,argcount,posonlyargcount,kwonlyargcount,nlocals,s…
|
/third_party/python/Doc/data/ |
D | refcounts.dat | 241 PyCode_NewWithPosOnlyArgs:int:nlocals:: 258 PyCode_New:int:nlocals::
|