HomeSort by relevance Sort by last modified time
    Searched refs:new_exc (Results 1 - 6 of 6) sorted by null

  /external/python/cpython3/Lib/
contextlib.py 474 def _fix_exception_context(new_exc, old_exc):
477 exc_context = new_exc.__context__
483 new_exc = exc_context
486 new_exc.__context__ = old_exc
611 def _fix_exception_context(new_exc, old_exc):
614 exc_context = new_exc.__context__
620 new_exc = exc_context
623 new_exc.__context__ = old_exc
  /external/python/cpython3/Lib/asyncio/
tasks.py 245 new_exc = RuntimeError(
249 self.__step, new_exc, context=self._context)
252 new_exc = RuntimeError(
255 self.__step, new_exc, context=self._context)
265 new_exc = RuntimeError(
269 self.__step, new_exc, context=self._context)
276 new_exc = RuntimeError(
280 self.__step, new_exc, context=self._context)
283 new_exc = RuntimeError(f'Task got bad yield: {result!r}')
285 self.__step, new_exc, context=self._context
    [all...]
unix_events.py 376 new_exc = ConnectionError(
378 new_exc.__cause__ = exc
379 exc = new_exc
    [all...]
  /external/python/cpython3/Lib/test/
test_capi.py 71 new_exc = TypeError("TEST")
77 orig_exc_info = _testcapi.set_exc_info(new_exc.__class__, new_exc, None)
87 self.assertSequenceEqual(new_exc_info, (new_exc.__class__, new_exc, None))
  /external/autotest/frontend/afe/
rpc_utils.py     [all...]
  /external/python/cpython3/Objects/
exceptions.c 2725 PyObject *new_exc, *new_val, *new_tb; local
    [all...]

Completed in 379 milliseconds