/third_party/jinja2/ |
H A D | debug.py | 25 _, exc_value, tb = sys.exc_info() 147 return sys.exc_info()[2].tb_next # type: ignore
|
/third_party/node/deps/v8/third_party/jinja2/ |
H A D | debug.py | 17 :param exc_info: A :meth:`sys.exc_info` tuple. If not provided, 18 the current ``exc_info`` is used. 21 :return: A :meth:`sys.exc_info` tuple that can be re-raised. 23 exc_type, exc_value, tb = sys.exc_info() 164 return sys.exc_info()[2].tb_next
|
/third_party/python/Lib/ |
H A D | code.py | 108 type, value, tb = sys.exc_info() 139 sys.last_type, sys.last_value, last_tb = ei = sys.exc_info()
|
H A D | doctest.py | 244 def _exception_traceback(exc_info): 247 exc_info tuple (as returned by sys.exc_info()). 251 exc_type, exc_val, exc_tb = exc_info 1267 def report_unexpected_exception(self, out, test, example, exc_info): 1272 'Exception raised:\n' + _indent(_exception_traceback(exc_info))) 1358 exception = sys.exc_info() 1757 - exc_info: the exception info 1759 def __init__(self, test, example, exc_info): 1762 self.exc_info [all...] |
H A D | pdb.py | 365 def user_exception(self, frame, exc_info): 370 exc_type, exc_value, exc_traceback = exc_info 1253 exc_info = sys.exc_info()[:2] 1254 err = traceback.format_exception_only(*exc_info)[-1].strip() 1258 exc_info = sys.exc_info()[:2] 1259 self.error(traceback.format_exception_only(*exc_info)[-1].strip()) 1701 # sys.exc_info() returns (type, value, traceback) if an exception is 1703 t = sys.exc_info()[ [all...] |
H A D | site.py | 197 for record in traceback.format_exception(*sys.exc_info()): 556 sys.excepthook(*sys.exc_info()) 576 sys.excepthook(*sys.exc_info())
|
H A D | tempfile.py | 879 def onerror(func, path, exc_info): 880 if issubclass(exc_info[0], PermissionError): 893 elif issubclass(exc_info[0], FileNotFoundError):
|
/third_party/skia/third_party/externals/jinja2/ |
H A D | debug.py | 17 :param exc_info: A :meth:`sys.exc_info` tuple. If not provided, 18 the current ``exc_info`` is used. 21 :return: A :meth:`sys.exc_info` tuple that can be re-raised. 23 exc_type, exc_value, tb = sys.exc_info() 164 return sys.exc_info()[2].tb_next
|
/third_party/python/Lib/idlelib/ |
H A D | run.py | 176 type, value, tb = sys.exc_info() 240 typ, val, tb = excinfo = sys.exc_info() 588 self.user_exc_info = sys.exc_info() # For testing, hook, viewer. 597 self.user_exc_info = sys.exc_info() # For testing.
|
H A D | window.py | 50 t, v, tb = sys.exc_info()
|
/third_party/googletest/googlemock/scripts/generator/cpp/ |
H A D | utils.py | 36 print('Error reading %s: %s' % (filename, sys.exc_info()[1]))
|
/test/testfwk/xdevice/plugins/devicetest/log/ |
H A D | logger.py | 50 traceback.format_exception(*sys.exc_info())))
|
/test/testfwk/xdevice/src/xdevice/_core/executor/ |
H A D | concurrent.py | 144 LOG.exception("Exception: %s", exception, exc_info=False, 150 exc_info=False, error_no=error_no) 286 exception), exc_info=False, error_no=error_no) 585 LOG.exception("Exception: %s", exception, exc_info=False, 591 exc_info=False, error_no=error_no) 651 exception), exc_info=False, error_no=error_no) 792 LOG.exception("Exception: %s", exception, exc_info=False, 798 exc_info=False, error_no=error_no)
|
/third_party/python/Lib/concurrent/futures/ |
H A D | thread.py | 74 _base.LOGGER.critical('Exception in initializer:', exc_info=True) 109 _base.LOGGER.critical('Exception in worker', exc_info=True)
|
/third_party/python/Lib/test/ |
H A D | profilee.py | 82 sys.exc_info() # 0
|
/third_party/python/Lib/asyncio/ |
H A D | proactor_events.py | 36 "getsockname() failed on %r", sock, exc_info=True) 123 logger.debug("%r: %s", self, message, exc_info=True) 311 exc_info=True) 833 exc_info=True) 871 sock, exc_info=True)
|
H A D | unix_events.py | 577 logger.debug("%r: %s", self, message, exc_info=True) 779 logger.debug("%r: %s", self, message, exc_info=True) 1110 pid, exc_info=True) 1326 pid, exc_info=True) 1342 logger.warning('Unknown exception in SIGCHLD handler', exc_info=True)
|
/third_party/python/Lib/idlelib/idle_test/ |
H A D | test_stackviewer.py | 21 sys.exc_info())
|
/third_party/python/Lib/wsgiref/ |
H A D | types.py | 25 exc_info: _OptExcInfo | None = ...,
|
/test/testfwk/xdevice/plugins/devicetest/ |
H A D | main.py | 52 Log.error(err, exc_info=True)
|
/test/xts/tools/lite/reliability/ |
H A D | utils.py | 57 logging.exception(err, exc_info=False)
|
/third_party/python/Include/internal/ |
H A D | pycore_pyerrors.h | 56 _PyErr_StackItem *exc_info); variable
|
/third_party/protobuf/python/google/protobuf/internal/ |
H A D | testing_refleaks.py | 101 result.addError(self, sys.exc_info())
|
/test/testfwk/xdevice/src/xdevice/_core/context/ |
H A D | abs.py | 70 LOG.exception(exception, exc_info=False)
|
/third_party/python/Include/cpython/ |
H A D | pystate.h | 125 _PyErr_StackItem *exc_info; member
|