Searched refs:PyCode_NewWithPosOnlyArgs (Results 1 – 9 of 9) sorted by relevance
/external/python/cpython3/Include/cpython/ |
D | code.h | 122 PyAPI_FUNC(PyCodeObject *) PyCode_NewWithPosOnlyArgs(
|
/external/python/cpython3/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 …]
|
/external/python/cpython3/Objects/ |
D | codeobject.c | 117 PyCode_NewWithPosOnlyArgs(int argcount, int posonlyargcount, int kwonlyargcount, in PyCode_NewWithPosOnlyArgs() function 274 return PyCode_NewWithPosOnlyArgs(argcount, 0, kwonlyargcount, nlocals, in PyCode_New() 348 result = PyCode_NewWithPosOnlyArgs( in PyCode_NewEmpty() 530 co = (PyObject *)PyCode_NewWithPosOnlyArgs(argcount, posonlyargcount, in code_new() 672 return (PyObject *)PyCode_NewWithPosOnlyArgs( in code_replace_impl()
|
/external/python/pybind11/tests/ |
D | valgrind-numpy-scipy.supp | 25 fun:PyCode_NewWithPosOnlyArgs
|
/external/python/cpython3/Doc/c-api/ |
D | code.rst | 43 .. c:function:: PyCodeObject* PyCode_NewWithPosOnlyArgs(int argcount, int posonlyargcount, int kwon…
|
/external/python/cpython3/Python/ |
D | marshal.c | 1380 v = (PyObject *) PyCode_NewWithPosOnlyArgs( in r_object()
|
D | compile.c | 5961 co = PyCode_NewWithPosOnlyArgs(posonlyargcount+posorkeywordargcount, in makecode()
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.8.rst | 1620 * The new function :c:func:`PyCode_NewWithPosOnlyArgs` allows to create
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.9.0a1.rst | 5718 The new function :c:func:`PyCode_NewWithPosOnlyArgs` allows to create code
|