Searched refs:PyCode_New (Results 1 – 11 of 11) sorted by relevance
/external/python/cpython2/Doc/c-api/ |
D | code.rst | 36 .. c:function:: PyCodeObject *PyCode_New(int argcount, int nlocals, int stacksize, int flags, PyObj… 40 :c:func:`PyCode_New` directly can bind you to a precise Python
|
/external/python/cpython2/Include/ |
D | code.h | 71 PyAPI_FUNC(PyCodeObject *) PyCode_New(
|
/external/python/cpython2/Objects/ |
D | codeobject.c | 93 PyCode_New(int argcount, int nlocals, int stacksize, int flags, in PyCode_New() function 176 result = PyCode_New(0, /* argcount */ in PyCode_NewEmpty() 332 co = (PyObject *)PyCode_New(argcount, nlocals, stacksize, flags, in code_new()
|
/external/python/cpython2/Doc/library/ |
D | new.rst | 51 This function is an interface to the :c:func:`PyCode_New` C function.
|
/external/python/cpython2/PC/os2vacpp/ |
D | python.def | 114 PyCode_New
|
/external/python/cpython2/Modules/_ctypes/ |
D | callbacks.c | 126 result = PyCode_New(0, /* argcount */ in PyCode_NewEmpty()
|
/external/python/cpython2/PC/os2emx/ |
D | python27.def | 236 "PyCode_New"
|
/external/python/cpython2/Python/ |
D | marshal.c | 1050 v = (PyObject *) PyCode_New( in r_object()
|
D | compile.c | 3854 co = PyCode_New(c->u->u_argcount, nlocals, stackdepth(c), flags, in makecode()
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.7.rst | 2106 extensions needed to call :c:func:`PyCode_New`, which had many
|
/external/python/cpython2/Misc/ |
D | HISTORY | 2524 carefully that passing them on to PyCode_New() won't trigger calls
|