Home
last modified time | relevance | path

Searched refs:Py_EnterRecursiveCall (Results 1 – 12 of 12) sorted by relevance

/external/python/cpython2/Include/
Dceval.h48 #define Py_EnterRecursiveCall(where) \ macro
/external/python/cpython2/Modules/
D_json.c1523 if (Py_EnterRecursiveCall(" while decoding a JSON object " in scan_once_str()
1531 if (Py_EnterRecursiveCall(" while decoding a JSON array " in scan_once_str()
1615 if (Py_EnterRecursiveCall(" while decoding a JSON object " in scan_once_unicode()
1623 if (Py_EnterRecursiveCall(" while decoding a JSON array " in scan_once_unicode()
2042 if (Py_EnterRecursiveCall(" while encoding a JSON object")) in encoder_listencode_obj()
2049 if (Py_EnterRecursiveCall(" while encoding a JSON object")) in encoder_listencode_obj()
2080 if (Py_EnterRecursiveCall(" while encoding a JSON object")) in encoder_listencode_obj()
DcPickle.c1760 if (Py_EnterRecursiveCall(" while pickling an object") == 0) in save_list()
2010 if (Py_EnterRecursiveCall(" while pickling an object") == 0) { in save_dict()
2018 if (Py_EnterRecursiveCall(" while pickling an object") == 0) { in save_dict()
2587 if (Py_EnterRecursiveCall(" while pickling an object")) in save()
/external/python/cpython2/Objects/
Dabstract.c2545 if (Py_EnterRecursiveCall(" while calling a Python object"))
2953 if (Py_EnterRecursiveCall(" in __instancecheck__"))
2973 if (Py_EnterRecursiveCall(" in __instancecheck__")) {
3032 if (Py_EnterRecursiveCall(" in __subclasscheck__"))
3051 if (Py_EnterRecursiveCall(" in __subclasscheck__")) {
Dobject.c428 if (Py_EnterRecursiveCall(" while getting the str of an object")) in _PyObject_Str()
864 if (Py_EnterRecursiveCall(" in cmp")) in PyObject_Compare()
949 if (Py_EnterRecursiveCall(" in cmp")) in PyObject_RichCompare()
Dtupleobject.c291 if (Py_EnterRecursiveCall(" while getting the repr of a tuple")) in tuplerepr()
Dclassobject.c1508 if (Py_EnterRecursiveCall(" after coercion")) in half_binop()
2149 if (Py_EnterRecursiveCall(" in __call__")) { in instance_call()
Dlistobject.c386 if (Py_EnterRecursiveCall(" while getting the repr of a list")) in list_repr()
/external/python/cpython2/Doc/c-api/
Dexceptions.rst496 .. c:function:: int Py_EnterRecursiveCall(const char *where)
514 Ends a :c:func:`Py_EnterRecursiveCall`. Must be called once for each
515 *successful* invocation of :c:func:`Py_EnterRecursiveCall`.
/external/python/cpython2/Python/
Dceval.c973 if (Py_EnterRecursiveCall("")) in PyEval_EvalFrameEx()
/external/python/cpython2/Modules/_ctypes/
D_ctypes.c2181 if (Py_EnterRecursiveCall("while processing _as_parameter_")) { in PyCSimpleType_from_param()
/external/python/cpython2/Misc/
DNEWS10628 Py_ReprEnter() and Py_EnterRecursiveCall(), respectively, fixed the