Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Dframeobject.h84 PyAPI_FUNC(int) PyFrame_GetLineNumber(PyFrameObject *);
/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()
368 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.c459 *lineno = PyFrame_GetLineNumber(f); in setup_context()
Dceval.c3132 PyFrame_GetLineNumber(f), in PyEval_EvalFrameEx()
/external/python/cpython2/Doc/whatsnew/
D2.7.rst2115 * New function: :c:func:`PyFrame_GetLineNumber` takes a frame object
/external/python/cpython2/Misc/
DNEWS8858 - Issue #5954: Add a PyFrame_GetLineNumber() function to replace most uses of