Home
last modified time | relevance | path

Searched refs:PyCode_NewWithPosOnlyArgs (Results 1 – 7 of 7) sorted by relevance

/third_party/python/Doc/data/
Drefcounts.dat237 PyCode_NewWithPosOnlyArgs:PyCodeObject*::+1:
238 PyCode_NewWithPosOnlyArgs:int:argcount::
239 PyCode_NewWithPosOnlyArgs:int:posonlyargcount::
240 PyCode_NewWithPosOnlyArgs:int:kwonlyargcount::
241 PyCode_NewWithPosOnlyArgs:int:nlocals::
242 PyCode_NewWithPosOnlyArgs:int:stacksize::
243 PyCode_NewWithPosOnlyArgs:int:flags::
244 PyCode_NewWithPosOnlyArgs:PyObject*:code:0:
245 PyCode_NewWithPosOnlyArgs:PyObject*:consts:0:
246 PyCode_NewWithPosOnlyArgs:PyObject*:names:0:
[all …]
/third_party/python/Include/cpython/
Dcode.h154 PyAPI_FUNC(PyCodeObject *) PyCode_NewWithPosOnlyArgs(
/third_party/python/Objects/
Dcodeobject.c498 PyCode_NewWithPosOnlyArgs(int argcount, int posonlyargcount, int kwonlyargcount, in PyCode_NewWithPosOnlyArgs() function
631 return PyCode_NewWithPosOnlyArgs(argcount, 0, kwonlyargcount, nlocals, in PyCode_New()
1589 co = (PyObject *)PyCode_NewWithPosOnlyArgs(argcount, posonlyargcount, in code_new_impl()
1975 co = PyCode_NewWithPosOnlyArgs( in code_replace_impl()
/third_party/python/Doc/c-api/
Dcode.rst48 .. c:function:: PyCodeObject* PyCode_NewWithPosOnlyArgs(int argcount, int posonlyargcount, int kwon…
/third_party/python/Doc/whatsnew/
D3.8.rst1623 * The new function :c:func:`PyCode_NewWithPosOnlyArgs` allows to create
D3.11.rst2296 * :c:func:`PyCode_New` and :c:func:`PyCode_NewWithPosOnlyArgs` now take
/third_party/python/Misc/
DNEWS16570 - bpo-37221: The new function :c:func:`PyCode_NewWithPosOnlyArgs` allows to