MCPcopy Index your code
hub / github.com/nodejs/node / standard_exc_info

Method standard_exc_info

tools/inspector_protocol/jinja2/debug.py:122–129  ·  view source on GitHub ↗

Standard python exc_info for re-raising

(self)

Source from the content-addressed store, hash-verified

120
121 @property
122 def standard_exc_info(self):
123 """Standard python exc_info for re-raising"""
124 tb = self.frames[0]
125 # the frame will be an actual traceback (or transparent proxy) if
126 # we are on pypy or a python implementation with support for tproxy
127 if type(tb) is not TracebackType:
128 tb = tb.tb
129 return self.exc_type, self.exc_value, tb
130
131
132def make_traceback(exc_info, source_hint=None):

Callers

nothing calls this directly

Calls 1

typeFunction · 0.50

Tested by

no test coverage detected