Searched refs:PyCode_New (Results 1 – 9 of 9) sorted by relevance
36 .. 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` directly50 …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.
255 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 …]
148 PyAPI_FUNC(PyCodeObject *) PyCode_New(
622 PyCode_New(int argcount, int kwonlyargcount, in PyCode_New() function
1624 code objects like :c:func:`PyCode_New`, but with an extra *posonlyargcount*
2296 * :c:func:`PyCode_New` and :c:func:`PyCode_NewWithPosOnlyArgs` now take
2130 extensions needed to call :c:func:`PyCode_New`, which had many
10596 - Issue #12949: Document the kwonlyargcount argument for the PyCode_New19908 carefully that passing them on to PyCode_New() won't trigger calls
16571 create code objects like :c:func:`PyCode_New`, but with an extra