Searched refs:PyCode_NewWithPosOnlyArgs (Results 1 – 8 of 8) 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/Objects/ |
D | codeobject.c | 117 PyCode_NewWithPosOnlyArgs(int argcount, int posonlyargcount, int kwonlyargcount, in PyCode_NewWithPosOnlyArgs() function 282 return PyCode_NewWithPosOnlyArgs(argcount, 0, kwonlyargcount, nlocals, in PyCode_New() 356 result = PyCode_NewWithPosOnlyArgs( in PyCode_NewEmpty() 615 co = (PyObject *)PyCode_NewWithPosOnlyArgs(argcount, posonlyargcount, in code_new_impl() 757 return (PyObject *)PyCode_NewWithPosOnlyArgs( in code_replace_impl()
|
/third_party/python/Include/cpython/ |
D | code.h | 122 PyAPI_FUNC(PyCodeObject *) PyCode_NewWithPosOnlyArgs(
|
/third_party/python/Doc/c-api/ |
D | code.rst | 43 .. c:function:: PyCodeObject* PyCode_NewWithPosOnlyArgs(int argcount, int posonlyargcount, int kwon…
|
/third_party/python/Python/ |
D | marshal.c | 1378 v = (PyObject *) PyCode_NewWithPosOnlyArgs( in r_object()
|
D | compile.c | 6934 co = PyCode_NewWithPosOnlyArgs(posonlyargcount+posorkeywordargcount, in makecode()
|
/third_party/python/Doc/whatsnew/ |
D | 3.8.rst | 1621 * The new function :c:func:`PyCode_NewWithPosOnlyArgs` allows to create
|
/third_party/python/Misc/NEWS.d/ |
D | 3.9.0a1.rst | 5718 The new function :c:func:`PyCode_NewWithPosOnlyArgs` allows to create code
|