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.py238 MAX_MARSHAL_STACK_DEPTH = 1000
240 MAX_MARSHAL_STACK_DEPTH = 2000
241 for i in range(MAX_MARSHAL_STACK_DEPTH - 2):
/external/python/cpython3/Lib/test/
Dtest_marshal.py203 MAX_MARSHAL_STACK_DEPTH = 1000
205 MAX_MARSHAL_STACK_DEPTH = 2000
206 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()
645 if (p->depth > MAX_MARSHAL_STACK_DEPTH) { in r_object()
/external/python/cpython3/Python/
Dmarshal.c23 #define MAX_MARSHAL_STACK_DEPTH 1000 macro
25 #define MAX_MARSHAL_STACK_DEPTH 2000 macro
306 if (p->depth > MAX_MARSHAL_STACK_DEPTH) { in w_object()
929 if (p->depth > MAX_MARSHAL_STACK_DEPTH) { in r_object()