Searched refs:nlocals (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython2/Lib/test/ |
D | test_new.py | 112 nlocals = c.co_nlocals 126 d = new.code(argcount, nlocals, stacksize, flags, codestring, 131 d = new.code(argcount, nlocals, stacksize, flags, codestring, 137 -argcount, nlocals, stacksize, flags, codestring, 142 argcount, -nlocals, stacksize, flags, codestring, 147 argcount, nlocals, stacksize, flags, codestring, 154 d = new.code(argcount, nlocals, stacksize, flags, codestring,
|
/external/python/cpython2/Objects/ |
D | codeobject.c | 93 PyCode_New(int argcount, int nlocals, int stacksize, int flags, in PyCode_New() argument 101 if (argcount < 0 || nlocals < 0 || in PyCode_New() 123 co->co_nlocals = nlocals; in PyCode_New() 272 int nlocals; in code_new() local 288 &argcount, &nlocals, &stacksize, &flags, in code_new() 306 if (nlocals < 0) { in code_new() 332 co = (PyObject *)PyCode_New(argcount, nlocals, stacksize, flags, in code_new()
|
/external/python/cpython2/Doc/c-api/ |
D | code.rst | 36 .. c:function:: PyCodeObject *PyCode_New(int argcount, int nlocals, int stacksize, int flags, PyObj…
|
/external/python/cpython2/Lib/compiler/ |
D | pyassem.py | 533 nlocals = 0 535 nlocals = len(self.varnames) 539 return types.CodeType(argcount, nlocals, self.stacksize, self.flags,
|
/external/python/cpython2/Doc/library/ |
D | new.rst | 49 .. function:: code(argcount, nlocals, stacksize, flags, codestring, constants, names, varnames, fil…
|
/external/python/cpython2/Python/ |
D | marshal.c | 1000 int nlocals; in r_object() local 1018 nlocals = (int)r_long(p); in r_object() 1051 argcount, nlocals, stacksize, flags, in r_object()
|
D | compile.c | 3816 int nlocals, flags; in makecode() local 3839 nlocals = PyDict_Size(c->u->u_varnames); in makecode() 3854 co = PyCode_New(c->u->u_argcount, nlocals, stackdepth(c), flags, in makecode()
|