Home
last modified time | relevance | path

Searched refs:CO_MAXBLOCKS (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython2/Include/
Dframeobject.h48 PyTryBlock f_blockstack[CO_MAXBLOCKS]; /* for try and loop blocks */
Dcode.h63 #define CO_MAXBLOCKS 20 /* Max static block nesting within a function */ macro
/external/python/cpython2/Objects/
Dframeobject.c113 int blockstack[CO_MAXBLOCKS]; /* Walking the 'finally' blocks */ in frame_setlineno()
114 int in_finally[CO_MAXBLOCKS]; /* (ditto) */ in frame_setlineno()
752 if (f->f_iblock >= CO_MAXBLOCKS) in PyFrame_BlockSetup()
/external/python/cpython2/Lib/test/
Dtest_sys.py632 CO_MAXBLOCKS = 20
638 check(x, vsize('12P3i' + CO_MAXBLOCKS*'3i' + 'P' + extras*'P'))
/external/python/cpython2/Python/
Dcompile.c120 struct fblockinfo u_fblock[CO_MAXBLOCKS];
3149 if (c->u->u_nfblocks >= CO_MAXBLOCKS) { in compiler_push_fblock()