Home
last modified time | relevance | path

Searched refs:PyCode_NewEmpty (Results 1 – 10 of 10) sorted by relevance

/third_party/python/Doc/c-api/
Dcode.rst39 use :c:func:`PyCode_NewEmpty` instead. Calling :c:func:`PyCode_New` directly
49 .. c:function:: PyCodeObject* PyCode_NewEmpty(const char *filename, const char *funcname, int first…
/third_party/python/Include/cpython/
Dcode.h130 PyCode_NewEmpty(const char *filename, const char *funcname, int firstlineno);
/third_party/python/Python/
Dtraceback.c273 code = PyCode_NewEmpty(filename, funcname, lineno); in _PyTraceback_Add()
/third_party/python/Doc/data/
Drefcounts.dat272 PyCode_NewEmpty:PyCodeObject*::+1:
273 PyCode_NewEmpty:const char*:filename::
274 PyCode_NewEmpty:const char*:funcname::
275 PyCode_NewEmpty:int:firstlineno::
/third_party/python/Objects/
Dcodeobject.c332 PyCode_NewEmpty(const char *filename, const char *funcname, int firstlineno) in PyCode_NewEmpty() function
/third_party/python/Tools/c-analyzer/
DTODO154 Objects/codeobject.c:PyCode_NewEmpty():nulltuple static PyObject *nulltuple
194 Objects/codeobject.c:PyCode_NewEmpty():emptystring static PyObject *emptystring
/third_party/python/Tools/c-analyzer/cpython/
Dignored.tsv2038 Objects/codeobject.c PyCode_NewEmpty emptystring -
2114 Objects/codeobject.c PyCode_NewEmpty nulltuple -
/third_party/python/Modules/
D_testcapimodule.c3443 return (PyObject *)PyCode_NewEmpty(filename, funcname, firstlineno); in code_newempty()
/third_party/python/Doc/whatsnew/
D2.7.rst2126 * New function: :c:func:`PyCode_NewEmpty` creates an empty code object;
/third_party/python/Misc/
DHISTORY13113 - Issue #5959: Add a PyCode_NewEmpty() function to create a new empty code