Home
last modified time | relevance | path

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

/third_party/python/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.
/third_party/python/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 …]
/third_party/python/Include/cpython/
Dcode.h148 PyAPI_FUNC(PyCodeObject *) PyCode_New(
/third_party/python/Objects/
Dcodeobject.c622 PyCode_New(int argcount, int kwonlyargcount, in PyCode_New() function
/third_party/python/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
/third_party/python/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
DNEWS16571 create code objects like :c:func:`PyCode_New`, but with an extra