Home
last modified time | relevance | path

Searched refs:MAX_MARSHAL_STACK_DEPTH (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_marshal.py252 MAX_MARSHAL_STACK_DEPTH = 1000
254 MAX_MARSHAL_STACK_DEPTH = 2000
255 for i in range(MAX_MARSHAL_STACK_DEPTH - 2):
/external/python/cpython3/Lib/test/
Dtest_marshal.py241 MAX_MARSHAL_STACK_DEPTH = 1000
243 MAX_MARSHAL_STACK_DEPTH = 2000
244 for i in range(MAX_MARSHAL_STACK_DEPTH - 2):
/external/python/cpython2/Python/
Dmarshal.c22 #define MAX_MARSHAL_STACK_DEPTH 1000 macro
24 #define MAX_MARSHAL_STACK_DEPTH 2000 macro
218 if (p->depth > MAX_MARSHAL_STACK_DEPTH) { in w_object()
651 if (p->depth > MAX_MARSHAL_STACK_DEPTH) { in r_object()
/external/python/cpython3/Python/
Dmarshal.c36 #define MAX_MARSHAL_STACK_DEPTH 1000 macro
38 #define MAX_MARSHAL_STACK_DEPTH 2000 macro
345 if (p->depth > MAX_MARSHAL_STACK_DEPTH) { in w_object()
947 if (p->depth > MAX_MARSHAL_STACK_DEPTH) { in r_object()