Home
last modified time | relevance | path

Searched refs:co_stacksize (Results 1 – 15 of 15) sorted by relevance

/external/python/cpython2/Tools/compiler/
Dstacktest.py15 if a.co_stacksize != b.co_stacksize:
17 a.co_stacksize,
18 b.co_stacksize)
19 if a.co_stacksize > b.co_stacksize:
/external/python/cpython2/Include/
Dcode.h14 int co_stacksize; /* #entries needed for evaluation stack */ member
/external/python/cpython2/Lib/test/
Dtest_new.py113 stacksize = c.co_stacksize
Dtest_compile.py601 self.assertLessEqual(code.co_stacksize, max_size)
Dtest_import.py506 code = type(code)(code.co_argcount, code.co_nlocals, code.co_stacksize,
Dtest_sys.py636 extras = x.f_code.co_stacksize + x.f_code.co_nlocals +\
/external/libmojo/third_party/jinja2/
Ddebug.py248 code = code_type(0, code.co_nlocals, code.co_stacksize,
/external/python/cpython2/Objects/
Dframeobject.c559 extras = f->f_code->co_stacksize + f->f_code->co_nlocals + in frame_sizeof()
677 extras = code->co_stacksize + code->co_nlocals + ncells + in PyFrame_New()
Dcodeobject.c124 co->co_stacksize = stacksize; in PyCode_New()
203 {"co_stacksize",T_INT, OFF(co_stacksize), READONLY},
/external/python/cpython2/Lib/
Dmodulefinder.py609 return types.CodeType(co.co_argcount, co.co_nlocals, co.co_stacksize,
/external/python/cpython2/Python/
Dceval.c937 assert(STACK_LEVEL() <= co->co_stacksize); } in PyEval_EvalFrameEx()
942 assert(STACK_LEVEL() <= co->co_stacksize); } in PyEval_EvalFrameEx()
1076 assert(STACK_LEVEL() <= co->co_stacksize); /* else overflow */ in PyEval_EvalFrameEx()
Dmarshal.c433 w_long(co->co_stacksize, p); in w_object()
/external/python/cpython2/Doc/library/
Dinspect.rst201 | | co_stacksize | virtual machine stack | |
/external/python/cpython2/Doc/reference/
Ddatamodel.rst936 single: co_stacksize (code object attribute)
955 :attr:`co_stacksize` is the required stack size (including local variables);
/external/python/cpython2/Misc/
Dcheatsheet1290 co_stacksize (int, R/O): required stack size (including local vars)