Home
last modified time | relevance | path

Searched refs:PyFrame_GetLineNumber (Results 1 – 19 of 19) sorted by relevance

/external/python/cpython2/Include/
Dframeobject.h84 PyAPI_FUNC(int) PyFrame_GetLineNumber(PyFrameObject *);
/external/python/cpython3/Include/
Dframeobject.h87 PyAPI_FUNC(int) PyFrame_GetLineNumber(PyFrameObject *);
/external/python/cpython3/Objects/
Dframeobject.c34 PyFrame_GetLineNumber(PyFrameObject *f) in PyFrame_GetLineNumber() function
45 return PyLong_FromLong(PyFrame_GetLineNumber(f)); in frame_getlineno()
391 f->f_lineno = PyFrame_GetLineNumber(f); in frame_settrace()
597 int lineno = PyFrame_GetLineNumber(f); in frame_repr()
Dgenobject.c1141 PyFrame_GetLineNumber(frame), in compute_cr_origin()
/external/python/cpython3/Doc/c-api/
Dreflection.rst32 .. c:function:: int PyFrame_GetLineNumber(PyFrameObject *frame)
/external/python/cpython2/Doc/c-api/
Dreflection.rst32 .. c:function:: int PyFrame_GetLineNumber(PyFrameObject *frame)
/external/python/cpython2/Objects/
Dframeobject.c64 PyFrame_GetLineNumber(PyFrameObject *f) in PyFrame_GetLineNumber() function
75 return PyInt_FromLong(PyFrame_GetLineNumber(f)); in frame_getlineno()
404 f->f_lineno = PyFrame_GetLineNumber(f); in frame_settrace()
/external/python/cpython2/Python/
Dtraceback.c99 tb->tb_lineno = PyFrame_GetLineNumber(frame); in newtracebackobject()
D_warnings.c465 *lineno = PyFrame_GetLineNumber(f); in setup_context()
Dceval.c3152 PyFrame_GetLineNumber(f), in PyEval_EvalFrameEx()
/external/python/cpython3/Python/
Dtraceback.c236 PyFrame_GetLineNumber(frame)); in PyTraceBack_Here()
D_warnings.c699 *lineno = PyFrame_GetLineNumber(f); in setup_context()
Dceval.c3326 PyFrame_GetLineNumber(f), in _PyEval_EvalFrameDefault()
/external/python/cpython3/Modules/
D_tracemalloc.c356 lineno = PyFrame_GetLineNumber(pyframe); in tracemalloc_get_frame()
/external/python/cpython3/Doc/whatsnew/
D3.6.rst2163 ``PyFrame_GetLineNumber()`` or ``PyCode_Addr2Line()`` are not affected.
D2.7.rst2139 * New function: :c:func:`PyFrame_GetLineNumber` takes a frame object
/external/python/cpython2/Misc/NEWS.d/
D2.7a1.rst5208 Add a PyFrame_GetLineNumber() function to replace most uses of
/external/python/cpython2/Doc/whatsnew/
D2.7.rst2115 * New function: :c:func:`PyFrame_GetLineNumber` takes a frame object
/external/python/cpython3/Misc/
DHISTORY13110 - Issue #5954: Add a PyFrame_GetLineNumber() function to replace most uses of