Home
last modified time | relevance | path

Searched refs:PyCode_New (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython2/Doc/c-api/
Dcode.rst36 .. 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/
Dcode.h71 PyAPI_FUNC(PyCodeObject *) PyCode_New(
/external/python/cpython2/Objects/
Dcodeobject.c93 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/
Dnew.rst51 This function is an interface to the :c:func:`PyCode_New` C function.
/external/python/cpython2/PC/os2vacpp/
Dpython.def114 PyCode_New
/external/python/cpython2/Modules/_ctypes/
Dcallbacks.c126 result = PyCode_New(0, /* argcount */ in PyCode_NewEmpty()
/external/python/cpython2/PC/os2emx/
Dpython27.def236 "PyCode_New"
/external/python/cpython2/Python/
Dmarshal.c1050 v = (PyObject *) PyCode_New( in r_object()
Dcompile.c3854 co = PyCode_New(c->u->u_argcount, nlocals, stackdepth(c), flags, in makecode()
/external/python/cpython2/Doc/whatsnew/
D2.7.rst2106 extensions needed to call :c:func:`PyCode_New`, which had many
/external/python/cpython2/Misc/
DHISTORY2524 carefully that passing them on to PyCode_New() won't trigger calls