Searched refs:PyCode_Addr2Line (Results 1 – 9 of 9) sorted by relevance
135 PyAPI_FUNC(int) PyCode_Addr2Line(PyCodeObject *, int);
55 .. c:function:: int PyCode_Addr2Line(PyCodeObject *co, int byte_offset)
140 (In C, this is implemented by PyCode_Addr2Line().) In order for this to work,
49 return PyCode_Addr2Line(f->f_code, f->f_lasti*sizeof(_Py_CODEUNIT)); in PyFrame_GetLineNumber()
1246 PyCode_Addr2Line(PyCodeObject *co, int addrq) in PyCode_Addr2Line() function
2163 ``PyFrame_GetLineNumber()`` or ``PyCode_Addr2Line()`` are not affected.
1955 instead (like :c:func:`PyCode_Addr2Line` for example). Notice as well that the
2002 instead call ``PyCode_Addr2Line(f->f_code, f->f_lasti)``. This will have the
13111 PyCode_Addr2Line().22436 PyCode_Addr2Line instead (f_lineno is still there, but only kept up