Searched refs:PyCode_Addr2Line (Results 1 – 10 of 10) sorted by relevance
168 PyAPI_FUNC(int) PyCode_Addr2Line(PyCodeObject *, int);
169 return PyCode_Addr2Line(frame->f_code, addr); in _PyInterpreterFrame_GetLine()
64 .. 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,
766 PyCode_Addr2Line(PyCodeObject *co, int addrq) in PyCode_Addr2Line() function
1964 instead (like :c:func:`PyCode_Addr2Line` for example). Notice as well that the
2166 ``PyFrame_GetLineNumber()`` or ``PyCode_Addr2Line()`` are not affected.
2446 Code using ``f_lasti`` with ``PyCode_Addr2Line()`` should use
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