Searched refs:PyCode_NewWithPosOnlyArgs (Results 1 – 7 of 7) sorted by relevance
| /third_party/python/Doc/data/ |
| D | refcounts.dat | 237 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/ |
| D | code.h | 154 PyAPI_FUNC(PyCodeObject *) PyCode_NewWithPosOnlyArgs(
|
| /third_party/python/Objects/ |
| D | codeobject.c | 498 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/ |
| D | code.rst | 48 .. c:function:: PyCodeObject* PyCode_NewWithPosOnlyArgs(int argcount, int posonlyargcount, int kwon…
|
| /third_party/python/Doc/whatsnew/ |
| D | 3.8.rst | 1623 * The new function :c:func:`PyCode_NewWithPosOnlyArgs` allows to create
|
| D | 3.11.rst | 2296 * :c:func:`PyCode_New` and :c:func:`PyCode_NewWithPosOnlyArgs` now take
|
| /third_party/python/Misc/ |
| D | NEWS | 16570 - bpo-37221: The new function :c:func:`PyCode_NewWithPosOnlyArgs` allows to
|