Searched refs:PyEval_EvalFrameEx (Results 1 – 20 of 20) sorted by relevance
/external/python/cpython3/Misc/ |
D | gdbinit | 105 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
|
D | HISTORY | 1019 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/ |
D | gdbinit | 105 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/ |
D | ceval.h | 66 PyAPI_FUNC(PyObject *) PyEval_EvalFrameEx(struct _frame *f, int exc);
|
/external/python/cpython3/Include/ |
D | ceval.h | 140 PyAPI_FUNC(PyObject *) PyEval_EvalFrameEx(struct _frame *f, int exc);
|
/external/python/cpython2/Objects/ |
D | genobject.c | 85 result = PyEval_EvalFrameEx(f, exc); in gen_send_ex()
|
/external/python/cpython2/Doc/c-api/ |
D | veryhigh.rst | 258 PyEval_EvalFrameEx, for backward compatibility. 261 .. c:function:: PyObject* PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
|
/external/bcc/tools/ |
D | profile_example.txt | 579 PyEval_EvalFrameEx 594 PyEval_EvalFrameEx 600 PyEval_EvalFrameEx
|
/external/python/cpython3/Doc/c-api/ |
D | veryhigh.rst | 322 :c:func:`PyEval_EvalFrameEx`, for backward compatibility. 325 .. c:function:: PyObject* PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
|
/external/python/cpython3/PC/ |
D | python3.def | 169 PyEval_EvalFrameEx=python37.PyEval_EvalFrameEx
|
/external/python/cpython2/PC/os2emx/ |
D | python27.def | 828 "PyEval_EvalFrameEx"
|
/external/python/cpython2/Python/ |
D | ceval.c | 685 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/ |
D | refcounts.dat | 796 PyEval_EvalFrameEx:PyObject*::+1: 797 PyEval_EvalFrameEx:PyFrameObject*:f:0: 798 PyEval_EvalFrameEx:int:throwflag::
|
/external/python/cpython3/Objects/ |
D | call.c | 283 result = PyEval_EvalFrameEx(f,0); in function_code_fastcall()
|
D | genobject.c | 221 result = PyEval_EvalFrameEx(f, exc); in gen_send_ex()
|
/external/python/cpython3/Python/ |
D | ceval.c | 540 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/ |
D | 3.6.3rc1.rst | 1256 PyEval_EvalFrameEx on non-debug shared builds. This broke the ability to
|
D | 3.5.0a1.rst | 834 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
|
D | 3.7.0a1.rst | 6229 PyEval_EvalFrameEx on non-debug shared builds. This broke the ability to
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.4.rst | 2488 * :c:func:`PyEval_EvalFrameEx`, :c:func:`PyObject_Repr`, and
|