Home
last modified time | relevance | path

Searched refs:tb_next (Results 1 - 25 of 30) sorted by relevance

12

/third_party/node/deps/v8/third_party/jinja2/
H A Ddebug.py43 tb = tb.tb_next
53 tb = tb.tb_next
65 tb = tb.tb_next
67 tb_next = None
69 # Assign tb_next in reverse to avoid circular references.
71 tb_next = tb_set_next(tb, tb_next)
73 return exc_type, exc_value, tb_next
164 return sys.exc_info()[2].tb_next
212 # tb_next i
[all...]
/third_party/skia/third_party/externals/jinja2/
H A Ddebug.py43 tb = tb.tb_next
53 tb = tb.tb_next
65 tb = tb.tb_next
67 tb_next = None
69 # Assign tb_next in reverse to avoid circular references.
71 tb_next = tb_set_next(tb, tb_next)
73 return exc_type, exc_value, tb_next
164 return sys.exc_info()[2].tb_next
212 # tb_next i
[all...]
/third_party/jinja2/
H A Ddebug.py42 tb = tb.tb_next
52 tb = tb.tb_next
64 tb = tb.tb_next
66 tb_next = None
68 # Assign tb_next in reverse to avoid circular references.
70 tb.tb_next = tb_next
71 tb_next = tb
73 return exc_value.with_traceback(tb_next)
147 return sys.exc_info()[2].tb_next # typ
[all...]
/third_party/python/Lib/test/
H A Dtest_raise.py226 self.assertEqual(e.__traceback__.tb_next, tb)
242 self.assertIsInstance(tb.tb_next, types.TracebackType)
247 self.assertIs(tb.tb_next.tb_next, None)
251 del tb.tb_next
254 tb.tb_next = "asdf"
258 tb.tb_next = tb
261 tb.tb_next.tb_next = tb
264 tb.tb_next
[all...]
H A Dtest_frame.py36 tb = tb.tb_next
169 tb = tb.tb_next
227 tb = tb.tb_next
H A Dtest_traceback.py28 test_tb = namedtuple('tb', ['tb_frame', 'tb_lineno', 'tb_next', 'tb_lasti'])
898 cleanup_func(tb.tb_next)
1972 tb_next = None
1976 tb = types.TracebackType(tb_next, frame, lasti, lineno)
2163 inner_frame = tb.tb_next.tb_next.tb_next.tb_frame
H A Dtest_exception_group.py254 self.assertIsNone(eg.__traceback__.tb_next)
257 self.assertIsNone(tb.tb_next)
533 self.assertIsNone(tb.tb_next)
H A Dtest_dis.py25 while tb.tb_next:
26 tb = tb.tb_next
1710 while tb.tb_next: tb = tb.tb_next
H A Dtest_sys_settrace.py1595 tb = tb.tb_next
1620 tb = tb.tb_next
/third_party/python/Python/
H A Dtraceback.c56 tb->tb_next = next; in tb_create_raw()
70 tb_next: object
79 tb_new_impl(PyTypeObject *type, PyObject *tb_next, PyFrameObject *tb_frame, in tb_new_impl() argument
83 if (tb_next == Py_None) { in tb_new_impl()
84 tb_next = NULL; in tb_new_impl()
85 } else if (!PyTraceBack_Check(tb_next)) { in tb_new_impl()
88 Py_TYPE(tb_next)->tp_name); in tb_new_impl()
91 return tb_create_raw((PyTracebackObject *)tb_next, tb_frame, tb_lasti, in tb_new_impl()
98 return Py_BuildValue("[ssss]", "tb_frame", "tb_next", in tb_dir()
105 PyObject* ret = (PyObject*)self->tb_next; in tb_next_get()
238 _PyTraceBack_FromFrame(PyObject *tb_next, PyFrameObject *frame) _PyTraceBack_FromFrame() argument
[all...]
H A Dsuggestions.c214 PyTracebackObject *next = traceback->tb_next; in offer_suggestions_for_name_error()
H A Dimport.c1505 PyObject *next = (PyObject *) traceback->tb_next; in remove_importlib_frames()
1527 prev_link = (PyObject **) &traceback->tb_next; in remove_importlib_frames()
/third_party/python/Python/clinic/
H A Dtraceback.c.h6 "TracebackType(tb_next, tb_frame, tb_lasti, tb_lineno)\n"
12 tb_new_impl(PyTypeObject *type, PyObject *tb_next, PyFrameObject *tb_frame,
19 static const char * const _keywords[] = {"tb_next", "tb_frame", "tb_lasti", "tb_lineno", NULL}; in tb_new()
24 PyObject *tb_next; in tb_new() local
33 tb_next = fastargs[0]; in tb_new()
47 return_value = tb_new_impl(type, tb_next, tb_frame, tb_lasti, tb_lineno); in tb_new()
/third_party/node/tools/inspector_protocol/jinja2/
H A Ddebug.py44 def tb_next(self): member in TracebackFrameProxy
164 tb = tb.tb_next
172 tb = tb.tb_next
177 next = tb.tb_next
292 new_tb = exc_info[2].tb_next
300 traceback objects. The function returned allows resetting `tb_next` on
339 ('tb_next', ctypes.POINTER(_Traceback)),
346 """Set the tb_next attribute of a traceback object."""
351 if tb.tb_next is not None:
352 old = _Traceback.from_address(id(tb.tb_next))
[all...]
/third_party/python/Lib/unittest/
H A Dresult.py204 tb = tb.tb_next
237 tb = tb.tb_next
239 prev.tb_next = None
/third_party/python/Include/cpython/
H A Dtraceback.h9 PyTracebackObject *tb_next; member
/third_party/python/Include/internal/
H A Dpycore_traceback.h84 PyObject *tb_next,
/third_party/python/Lib/idlelib/
H A Dstackviewer.py33 tb = tb.tb_next
36 tb = tb.tb_next
H A Drun.py631 tb = tb.tb_next
/third_party/python/Lib/
H A Ddis.py120 while tb.tb_next: tb = tb.tb_next
731 while tb.tb_next:
732 tb = tb.tb_next
H A Dcode.py142 lines = traceback.format_exception(ei[0], ei[1], last_tb.tb_next)
H A Dtraceback.py244 tb = tb.tb_next
341 This will follow tb.tb_next (and thus is in the opposite order to
346 tb = tb.tb_next
360 tb = tb.tb_next
H A Dbdb.py536 t = t.tb_next
546 t = t.tb_next
H A Dasyncore.py549 tb = tb.tb_next
/third_party/python/Lib/asyncio/
H A Dbase_tasks.py63 tb = tb.tb_next

Completed in 25 milliseconds

12