Home
last modified time | relevance | path

Searched refs:tb_frame (Results 1 – 25 of 28) sorted by relevance

12

/external/python/cpython2/Python/
Dtraceback.c16 {"tb_frame", T_OBJECT, OFF(tb_frame), READONLY},
28 Py_XDECREF(tb->tb_frame); in tb_dealloc()
37 Py_VISIT(tb->tb_frame); in tb_traverse()
45 Py_CLEAR(tb->tb_frame); in tb_clear()
97 tb->tb_frame = frame; in newtracebackobject()
245 tb->tb_frame->f_code->co_filename), in tb_printinternal()
247 PyString_AsString(tb->tb_frame->f_code->co_name)); in tb_printinternal()
/external/libmojo/third_party/jinja2/
Ddebug.py60 return '__jinja_template__' in self.tb.tb_frame.f_globals
171 if tb.tb_frame.f_code in internal_code:
180 template = tb.tb_frame.f_globals.get('__jinja_template__')
204 real_locals = tb.tb_frame.f_locals.copy()
241 function = tb.tb_frame.f_code.co_name
D_compat.py135 frame_type = type(_tb.tb_frame)
/external/python/cpython2/Lib/
Dtraceback.py61 f = tb.tb_frame
95 f = tb.tb_frame
269 f = sys.exc_info()[2].tb_frame.f_back
278 f = sys.exc_info()[2].tb_frame.f_back
294 f = sys.exc_info()[2].tb_frame.f_back
Dtypes.py71 FrameType = type(tb.tb_frame)
Dinspect.py413 object = object.tb_frame
570 object = object.tb_frame
1002 frame = frame.tb_frame
1048 framelist.append((tb.tb_frame,) + getframeinfo(tb, context))
Dasyncore.py563 tb.tb_frame.f_code.co_filename,
564 tb.tb_frame.f_code.co_name,
Ddis.py59 disassemble(tb.tb_frame.f_code, tb.tb_lasti)
Dbdb.py343 if t and t.tb_frame is f:
353 stack.append((t.tb_frame, t.tb_lineno))
Dthreading.py829 (exc_tb.tb_frame.f_code.co_filename,
831 exc_tb.tb_frame.f_code.co_name))
Ddoctest.py1081 if inspect.istraceback(obj): obj = obj.tb_frame
/external/python/cpython2/Include/
Dtraceback.h15 struct _frame *tb_frame; member
/external/python/cpython2/Lib/idlelib/
DStackViewer.py31 if tb and tb.tb_frame is None:
34 stack.append((tb.tb_frame, tb.tb_lineno))
Drun.py368 while tb and tb.tb_frame.f_globals["__name__"] in ["rpc", "run"]:
/external/python/cpython2/Lib/test/
Dtest_exceptions.py170 co = tb.tb_frame.f_code
182 co = tb.tb_frame.f_code
185 co2 = tb.tb_frame.f_back.f_code
Dtest_zipimport.py371 f,lno,n,line = extract_stack(tb.tb_frame, 1)[0]
Dtest_inspect.py96 self.assertFalse(inspect.isgetsetdescriptor(type(tb.tb_frame).f_locals))
/external/python/cpython2/Lib/unittest/
Dresult.py181 return '__unittest' in tb.tb_frame.f_globals
/external/python/cpython2/Lib/unittest/test/
Dtest_result.py264 class tb_frame(object): class in Test_TestResult.testStackFrameTrimming.Frame
269 Frame.tb_frame.f_globals['__unittest'] = True
/external/python/cpython2/Doc/library/
Dtypes.rst210 The type of frame objects such as found in ``tb.tb_frame`` if ``tb`` is a
Dinspect.rst117 | traceback | tb_frame | frame object at this | |
/external/selinux/python/sepolgen/src/sepolgen/
Dlex.py522 f = t.tb_frame
Dyacc.py1995 f = t.tb_frame
/external/python/cpython2/Lib/logging/
D__init__.py68 return sys.exc_info()[2].tb_frame.f_back
/external/libmojo/third_party/ply/
Dlex.py432 f = t.tb_frame

12