Home
last modified time | relevance | path

Searched refs:PyEval_EvalFrameEx (Results 1 – 20 of 20) sorted by relevance

/external/python/cpython3/Misc/
Dgdbinit105 if $pc > PyEval_EvalFrameEx && $pc < _PyEval_EvalFrameDefault
121 # statement tests to see if we are in PyEval_EvalFrameEx().
132 if $pc > PyEval_EvalFrameEx && $pc < _PyEval_EvalFrameDefault
143 if $pc > PyEval_EvalFrameEx && $pc < _PyEval_EvalFrameDefault
DHISTORY1019 PyEval_EvalFrameEx(). At entry, save or swap the exception state even if
1020 PyEval_EvalFrameEx() is called with throwflag=0. At exit, the exception state
8677 - Issue #11168: Remove filename debug variable from PyEval_EvalFrameEx().
/external/python/cpython2/Misc/
Dgdbinit105 if $pc > PyEval_EvalFrameEx && $pc < PyEval_EvalCodeEx
121 # statement tests to see if we are in PyEval_EvalFrameEx().
132 if $pc > PyEval_EvalFrameEx && $pc < PyEval_EvalCodeEx
143 if $pc > PyEval_EvalFrameEx && $pc < PyEval_EvalCodeEx
/external/python/cpython2/Include/
Dceval.h66 PyAPI_FUNC(PyObject *) PyEval_EvalFrameEx(struct _frame *f, int exc);
/external/python/cpython3/Include/
Dceval.h140 PyAPI_FUNC(PyObject *) PyEval_EvalFrameEx(struct _frame *f, int exc);
/external/python/cpython2/Objects/
Dgenobject.c85 result = PyEval_EvalFrameEx(f, exc); in gen_send_ex()
/external/python/cpython2/Doc/c-api/
Dveryhigh.rst258 PyEval_EvalFrameEx, for backward compatibility.
261 .. c:function:: PyObject* PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
/external/bcc/tools/
Dprofile_example.txt579 PyEval_EvalFrameEx
594 PyEval_EvalFrameEx
600 PyEval_EvalFrameEx
/external/python/cpython3/Doc/c-api/
Dveryhigh.rst322 :c:func:`PyEval_EvalFrameEx`, for backward compatibility.
325 .. c:function:: PyObject* PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
/external/python/cpython3/PC/
Dpython3.def169 PyEval_EvalFrameEx=python37.PyEval_EvalFrameEx
/external/python/cpython2/PC/os2emx/
Dpython27.def828 "PyEval_EvalFrameEx"
/external/python/cpython2/Python/
Dceval.c685 return PyEval_EvalFrameEx(f, 0); in PyEval_EvalFrame()
689 PyEval_EvalFrameEx(PyFrameObject *f, int throwflag) in PyEval_EvalFrameEx() function
3604 retval = PyEval_EvalFrameEx(f,0); in PyEval_EvalCodeEx()
4457 retval = PyEval_EvalFrameEx(f,0); in fast_function()
/external/python/cpython3/Doc/data/
Drefcounts.dat796 PyEval_EvalFrameEx:PyObject*::+1:
797 PyEval_EvalFrameEx:PyFrameObject*:f:0:
798 PyEval_EvalFrameEx:int:throwflag::
/external/python/cpython3/Objects/
Dcall.c283 result = PyEval_EvalFrameEx(f,0); in function_code_fastcall()
Dgenobject.c221 result = PyEval_EvalFrameEx(f, exc); in gen_send_ex()
/external/python/cpython3/Python/
Dceval.c540 return PyEval_EvalFrameEx(f, 0); in PyEval_EvalFrame()
544 PyEval_EvalFrameEx(PyFrameObject *f, int throwflag) in PyEval_EvalFrameEx() function
3930 retval = PyEval_EvalFrameEx(f,0); in _PyEval_EvalCodeWithName()
/external/python/cpython3/Misc/NEWS.d/
D3.6.3rc1.rst1256 PyEval_EvalFrameEx on non-debug shared builds. This broke the ability to
D3.5.0a1.rst834 Fix the exception handling of generators in PyEval_EvalFrameEx(). At entry,
835 save or swap the exception state even if PyEval_EvalFrameEx() is called with
D3.7.0a1.rst6229 PyEval_EvalFrameEx on non-debug shared builds. This broke the ability to
/external/python/cpython3/Doc/whatsnew/
D3.4.rst2488 * :c:func:`PyEval_EvalFrameEx`, :c:func:`PyObject_Repr`, and