Home
last modified time | relevance | path

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

/aosp_15_r20/external/python/cpython3/Doc/c-api/
Dcode.rst36 .. c:function:: PyCodeObject* PyCode_New(int argcount, int kwonlyargcount, int nlocals, int stacksi…
39 use :c:func:`PyCode_NewEmpty` instead. Calling :c:func:`PyCode_New` directly
50 …Similar to :c:func:`PyCode_New`, but with an extra "posonlyargcount" for positional-only arguments.
51 The same caveats that apply to ``PyCode_New`` also apply to this function.
/aosp_15_r20/external/python/cpython3/Doc/data/
Drefcounts.dat255 PyCode_New:PyCodeObject*::+1:
256 PyCode_New:int:argcount::
257 PyCode_New:int:kwonlyargcount::
258 PyCode_New:int:nlocals::
259 PyCode_New:int:stacksize::
260 PyCode_New:int:flags::
261 PyCode_New:PyObject*:code:0:
262 PyCode_New:PyObject*:consts:0:
263 PyCode_New:PyObject*:names:0:
264 PyCode_New:PyObject*:varnames:0:
[all …]
Dpython3.11.abi73 …<elf-symbol name='PyCode_New' type='func-type' binding='global-binding' visibility='default-visibi…
7517PyCode_New' mangled-name='PyCode_New' filepath='Objects/codeobject.c' line='622' column='1' visibi…
/aosp_15_r20/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
/aosp_15_r20/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()
/aosp_15_r20/external/python/cpython2/Include/
Dcode.h71 PyAPI_FUNC(PyCodeObject *) PyCode_New(
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/cpython/
Dcode.h148 PyAPI_FUNC(PyCodeObject *) PyCode_New(
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/cpython/
Dcode.h148 PyAPI_FUNC(PyCodeObject *) PyCode_New(
/aosp_15_r20/external/python/cpython3/Include/cpython/
Dcode.h148 PyAPI_FUNC(PyCodeObject *) PyCode_New(
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/cpython/
Dcode.h148 PyAPI_FUNC(PyCodeObject *) PyCode_New(
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/cpython/
Dcode.h148 PyAPI_FUNC(PyCodeObject *) PyCode_New(
/aosp_15_r20/external/python/cpython2/Doc/library/
Dnew.rst51 This function is an interface to the :c:func:`PyCode_New` C function.
/aosp_15_r20/external/python/cpython2/PC/os2vacpp/
Dpython.def114 PyCode_New
/aosp_15_r20/external/python/cpython2/Modules/_ctypes/
Dcallbacks.c126 result = PyCode_New(0, /* argcount */ in PyCode_NewEmpty()
/aosp_15_r20/external/python/cpython2/PC/os2emx/
Dpython27.def236 "PyCode_New"
/aosp_15_r20/external/python/cpython2/Python/
Dmarshal.c1056 v = (PyObject *) PyCode_New( in r_object()
Dcompile.c3855 co = PyCode_New(c->u->u_argcount, nlocals, stackdepth(c), flags, in makecode()
/aosp_15_r20/external/python/cpython3/Objects/
Dcodeobject.c622 PyCode_New(int argcount, int kwonlyargcount, in PyCode_New() function
/aosp_15_r20/external/python/cpython3/Doc/whatsnew/
D3.8.rst1624 code objects like :c:func:`PyCode_New`, but with an extra *posonlyargcount*
D3.11.rst2296 * :c:func:`PyCode_New` and :c:func:`PyCode_NewWithPosOnlyArgs` now take
D2.7.rst2130 extensions needed to call :c:func:`PyCode_New`, which had many
/aosp_15_r20/external/python/cpython3/Misc/NEWS.d/
D3.9.0a1.rst5719 objects like :c:func:`PyCode_New`, but with an extra *posonlyargcount*
/aosp_15_r20/external/python/cpython2/Doc/whatsnew/
D2.7.rst2106 extensions needed to call :c:func:`PyCode_New`, which had many
/aosp_15_r20/external/python/cpython3/Misc/
DHISTORY10596 - Issue #12949: Document the kwonlyargcount argument for the PyCode_New
19908 carefully that passing them on to PyCode_New() won't trigger calls
/aosp_15_r20/external/python/cpython2/Misc/
DHISTORY2524 carefully that passing them on to PyCode_New() won't trigger calls