Home
last modified time | relevance | path

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

/third_party/python/Python/
DPython-ast.c5373 if (Py_EnterRecursiveCall(" while traversing 'Module' node")) { in obj2ast_mod()
5410 if (Py_EnterRecursiveCall(" while traversing 'Module' node")) { in obj2ast_mod()
5459 if (Py_EnterRecursiveCall(" while traversing 'Interactive' node")) { in obj2ast_mod()
5495 if (Py_EnterRecursiveCall(" while traversing 'Expression' node")) { in obj2ast_mod()
5538 if (Py_EnterRecursiveCall(" while traversing 'FunctionType' node")) { in obj2ast_mod()
5562 if (Py_EnterRecursiveCall(" while traversing 'FunctionType' node")) { in obj2ast_mod()
5607 if (Py_EnterRecursiveCall(" while traversing 'stmt' node")) { in obj2ast_stmt()
5624 if (Py_EnterRecursiveCall(" while traversing 'stmt' node")) { in obj2ast_stmt()
5641 if (Py_EnterRecursiveCall(" while traversing 'stmt' node")) { in obj2ast_stmt()
5658 if (Py_EnterRecursiveCall(" while traversing 'stmt' node")) { in obj2ast_stmt()
[all …]
Dceval.c6490 #undef Py_EnterRecursiveCall
6492 int Py_EnterRecursiveCall(const char *where) in Py_EnterRecursiveCall() function
/third_party/python/Include/
Dceval.h67 PyAPI_FUNC(int) Py_EnterRecursiveCall(const char *where);
/third_party/python/Include/internal/
Dpycore_ceval.h97 #define Py_EnterRecursiveCall(where) _Py_EnterRecursiveCall_inline(where) macro
/third_party/python/Modules/
D_json.c1061 if (Py_EnterRecursiveCall(" while decoding a JSON object " in scan_once_unicode()
1069 if (Py_EnterRecursiveCall(" while decoding a JSON array " in scan_once_unicode()
1432 if (Py_EnterRecursiveCall(" while encoding a JSON object")) in encoder_listencode_obj()
1439 if (Py_EnterRecursiveCall(" while encoding a JSON object")) in encoder_listencode_obj()
1470 if (Py_EnterRecursiveCall(" while encoding a JSON object")) { in encoder_listencode_obj()
D_pickle.c3071 if (Py_EnterRecursiveCall(" while pickling an object")) in save_list()
3080 if (Py_EnterRecursiveCall(" while pickling an object")) { in save_list()
3330 if (Py_EnterRecursiveCall(" while pickling an object")) in save_dict()
3344 if (Py_EnterRecursiveCall(" while pickling an object")) { in save_dict()
4315 if (Py_EnterRecursiveCall(" while pickling an object")) { in save()
/third_party/python/Doc/c-api/
Dcall.rst125 :c:func:`Py_EnterRecursiveCall` and :c:func:`Py_LeaveRecursiveCall`
129 the callee should use *Py_EnterRecursiveCall* and *Py_LeaveRecursiveCall*
Dexceptions.rst766 .. c:function:: int Py_EnterRecursiveCall(const char *where)
787 Ends a :c:func:`Py_EnterRecursiveCall`. Must be called once for each
788 *successful* invocation of :c:func:`Py_EnterRecursiveCall`.
/third_party/python/Doc/data/
Dstable_abi.dat784 function,Py_EnterRecursiveCall,3.9,
/third_party/python/PC/
Dpython3dll.c53 EXPORT_FUNC(Py_EnterRecursiveCall)
/third_party/python/Misc/NEWS.d/
D3.9.0a5.rst1204 Move the static inline function flavor of Py_EnterRecursiveCall() and
D3.9.0a1.rst5463 Provide :c:func:`Py_EnterRecursiveCall` and :c:func:`Py_LeaveRecursiveCall`
/third_party/python/Misc/
Dstable_abi.txt2051 function Py_EnterRecursiveCall
/third_party/python/Objects/
Dabstract.c2563 if (Py_EnterRecursiveCall(" in __issubclass__")) { in abstract_issubclass()
/third_party/python/Modules/_ctypes/
D_ctypes.c2301 if (Py_EnterRecursiveCall("while processing _as_parameter_")) { in PyCSimpleType_from_param()
/third_party/python/Doc/whatsnew/
D3.9.rst1290 * Provide :c:func:`Py_EnterRecursiveCall` and :c:func:`Py_LeaveRecursiveCall`