Home
last modified time | relevance | path

Searched refs:exc_info (Results 26 - 50 of 154) sorted by relevance

1234567

/third_party/jinja2/
H A Ddebug.py25 _, 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 Ddebug.py17 :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 Dcode.py108 type, value, tb = sys.exc_info()
139 sys.last_type, sys.last_value, last_tb = ei = sys.exc_info()
H A Ddoctest.py244 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 Dpdb.py365 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 Dsite.py197 for record in traceback.format_exception(*sys.exc_info()):
556 sys.excepthook(*sys.exc_info())
576 sys.excepthook(*sys.exc_info())
H A Dtempfile.py879 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 Ddebug.py17 :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 Drun.py176 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 Dwindow.py50 t, v, tb = sys.exc_info()
/third_party/googletest/googlemock/scripts/generator/cpp/
H A Dutils.py36 print('Error reading %s: %s' % (filename, sys.exc_info()[1]))
/test/testfwk/xdevice/plugins/devicetest/log/
H A Dlogger.py50 traceback.format_exception(*sys.exc_info())))
/test/testfwk/xdevice/src/xdevice/_core/executor/
H A Dconcurrent.py144 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 Dthread.py74 _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 Dprofilee.py82 sys.exc_info() # 0
/third_party/python/Lib/asyncio/
H A Dproactor_events.py36 "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 Dunix_events.py577 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 Dtest_stackviewer.py21 sys.exc_info())
/third_party/python/Lib/wsgiref/
H A Dtypes.py25 exc_info: _OptExcInfo | None = ...,
/test/testfwk/xdevice/plugins/devicetest/
H A Dmain.py52 Log.error(err, exc_info=True)
/test/xts/tools/lite/reliability/
H A Dutils.py57 logging.exception(err, exc_info=False)
/third_party/python/Include/internal/
H A Dpycore_pyerrors.h56 _PyErr_StackItem *exc_info); variable
/third_party/protobuf/python/google/protobuf/internal/
H A Dtesting_refleaks.py101 result.addError(self, sys.exc_info())
/test/testfwk/xdevice/src/xdevice/_core/context/
H A Dabs.py70 LOG.exception(exception, exc_info=False)
/third_party/python/Include/cpython/
H A Dpystate.h125 _PyErr_StackItem *exc_info; member

Completed in 21 milliseconds

1234567