/third_party/python/Python/ |
H A D | errors.c | 1270 PyObject *exc_value, PyObject *exc_tb, in make_unraisable_hook_args() 1291 ADD_ITEM(exc_tb); in make_unraisable_hook_args() 1312 PyObject *exc_value, PyObject *exc_tb, in write_unraisable_exc_file() 1349 if (exc_tb != NULL && exc_tb != Py_None) { in write_unraisable_exc_file() 1350 if (PyTraceBack_Print(exc_tb, file) < 0) { in write_unraisable_exc_file() 1432 PyObject *exc_value, PyObject *exc_tb, PyObject *err_msg, in write_unraisable_exc() 1443 int res = write_unraisable_exc_file(tstate, exc_type, exc_value, exc_tb, in write_unraisable_exc() 1466 PyObject *exc_tb = PyStructSequence_GET_ITEM(args, 2); in _PyErr_WriteUnraisableDefaultHook() local 1470 if (write_unraisable_exc(tstate, exc_type, exc_value, exc_tb, err_ms in _PyErr_WriteUnraisableDefaultHook() 1269 make_unraisable_hook_args(PyThreadState *tstate, PyObject *exc_type, PyObject *exc_value, PyObject *exc_tb, PyObject *err_msg, PyObject *obj) make_unraisable_hook_args() argument 1311 write_unraisable_exc_file(PyThreadState *tstate, PyObject *exc_type, PyObject *exc_value, PyObject *exc_tb, PyObject *err_msg, PyObject *obj, PyObject *file) write_unraisable_exc_file() argument 1431 write_unraisable_exc(PyThreadState *tstate, PyObject *exc_type, PyObject *exc_value, PyObject *exc_tb, PyObject *err_msg, PyObject *obj) write_unraisable_exc() argument 1495 PyObject *exc_type, *exc_value, *exc_tb; _PyErr_WriteUnraisableMsg() local [all...] |
H A D | sysmodule.c | 70 PyObject *exc_type, *exc_value, *exc_tb; in _PySys_GetAttr() local 71 _PyErr_Fetch(tstate, &exc_type, &exc_value, &exc_tb); in _PySys_GetAttr() 75 _PyErr_Restore(tstate, exc_type, exc_value, exc_tb); in _PySys_GetAttr() 94 PyObject *exc_type, *exc_value, *exc_tb; in PySys_GetObject() local 95 _PyErr_Fetch(tstate, &exc_type, &exc_value, &exc_tb); in PySys_GetObject() 99 _PyErr_Restore(tstate, exc_type, exc_value, exc_tb); in PySys_GetObject() 194 PyObject *exc_type, *exc_value, *exc_tb; in sys_audit_tstate() local 195 _PyErr_Fetch(ts, &exc_type, &exc_value, &exc_tb); in sys_audit_tstate() 279 _PyErr_Restore(ts, exc_type, exc_value, exc_tb); in sys_audit_tstate() 285 Py_XDECREF(exc_tb); in sys_audit_tstate() [all...] |
/third_party/python/Modules/_ssl/ |
H A D | debughelpers.c | 77 PyErr_Fetch(&ssl_obj->exc_type, &ssl_obj->exc_value, &ssl_obj->exc_tb); in _PySSL_msg_callback() 144 &ssl_obj->exc_tb); in _PySSL_keylog_callback() 161 PyErr_Fetch(&ssl_obj->exc_type, &ssl_obj->exc_value, &ssl_obj->exc_tb); in _PySSL_keylog_callback()
|
/third_party/python/Lib/multiprocessing/dummy/ |
H A D | connection.py | 36 def __exit__(self, exc_type, exc_value, exc_tb): 74 def __exit__(self, exc_type, exc_value, exc_tb):
|
/third_party/python/Modules/_multiprocessing/clinic/ |
H A D | semaphore.c.h | 386 "__exit__($self, exc_type=None, exc_value=None, exc_tb=None, /)\n" 397 PyObject *exc_value, PyObject *exc_tb); 405 PyObject *exc_tb = Py_None; in _multiprocessing_SemLock___exit__() local 421 exc_tb = args[2]; in _multiprocessing_SemLock___exit__() 423 return_value = _multiprocessing_SemLock___exit___impl(self, exc_type, exc_value, exc_tb); in _multiprocessing_SemLock___exit__()
|
/third_party/python/Lib/idlelib/ |
H A D | stackviewer.py | 137 exc_type, exc_value, exc_tb = sys.exc_info() 141 sys.last_traceback = exc_tb 143 StackBrowser(top, flist=flist, top=top, tb=exc_tb)
|
/third_party/python/Modules/clinic/ |
H A D | selectmodule.c.h | 873 "__exit__($self, exc_type=None, exc_value=None, exc_tb=None, /)\n" 882 PyObject *exc_value, PyObject *exc_tb); 890 PyObject *exc_tb = Py_None; in select_epoll___exit__() local 906 exc_tb = args[2]; in select_epoll___exit__() 908 return_value = select_epoll___exit___impl(self, exc_type, exc_value, exc_tb); in select_epoll___exit__()
|
/third_party/python/Modules/_sqlite/clinic/ |
H A D | connection.c.h | 1121 PyObject *exc_value, PyObject *exc_tb); 1129 PyObject *exc_tb; in pysqlite_connection_exit() local 1136 exc_tb = args[2]; in pysqlite_connection_exit() 1137 return_value = pysqlite_connection_exit_impl(self, exc_type, exc_value, exc_tb); in pysqlite_connection_exit()
|
/third_party/mesa3d/.gitlab-ci/lava/utils/ |
H A D | gitlab_section.py | 61 def __exit__(self, exc_type, exc_val, exc_tb):
|
H A D | log_follower.py | 63 def __exit__(self, exc_type, exc_val, exc_tb):
|
/third_party/python/Lib/asyncio/ |
H A D | timeouts.py | 97 exc_tb: Optional[TracebackType],
|
H A D | runners.py | 62 def __exit__(self, exc_type, exc_val, exc_tb):
|
H A D | unix_events.py | 1261 def __exit__(self, exc_type, exc_val, exc_tb): 1378 def __exit__(self, exc_type, exc_val, exc_tb):
|
/third_party/python/Lib/test/ |
H A D | audit-tests.py | 274 def excepthook(exc_type, exc_value, exc_tb): 276 sys.__excepthook__(exc_type, exc_value, exc_tb)
|
H A D | test_contextlib_async.py | 604 async def _expect_exc(exc_type, exc, exc_tb): 608 async def _expect_ok(exc_type, exc, exc_tb): 611 self.assertIsNone(exc_tb)
|
H A D | test_contextlib.py | 670 def _expect_exc(exc_type, exc, exc_tb): 674 def _expect_ok(exc_type, exc, exc_tb): 677 self.assertIsNone(exc_tb)
|
H A D | test_raise.py | 22 def __exit__(self, exc_type, exc_value, exc_tb):
|
/third_party/python/Modules/ |
H A D | _tkinter.c | 1247 PyObject **exc_type, **exc_value, **exc_tb; member 1364 PyErr_Fetch(e->exc_type, e->exc_value, e->exc_tb); in Tkapp_CallProc() 1379 PyErr_Fetch(e->exc_type, e->exc_value, e->exc_tb); in Tkapp_CallProc() 1426 PyObject *exc_type, *exc_value, *exc_tb; in Tkapp_Call() local 1440 ev->exc_tb = &exc_tb; in Tkapp_Call() 1447 PyErr_Restore(exc_type, exc_value, exc_tb); in Tkapp_Call()
|
H A D | _threadmodule.c | 1510 PyObject *exc_tb = PyStructSequence_GET_ITEM(args, 2); in thread_excepthook() local 1536 int res = thread_excepthook_file(file, exc_type, exc_value, exc_tb, in thread_excepthook()
|
/third_party/python/Lib/test/libregrtest/ |
H A D | save_env.py | 309 def __exit__(self, exc_type, exc_val, exc_tb):
|
/third_party/python/Lib/multiprocessing/ |
H A D | managers.py | 656 def __exit__(self, exc_type, exc_val, exc_tb): 1057 def __exit__(self, exc_type, exc_val, exc_tb): 1193 def __exit__(self, exc_type, exc_val, exc_tb):
|
H A D | connection.py | 261 def __exit__(self, exc_type, exc_value, exc_tb): 488 def __exit__(self, exc_type, exc_value, exc_tb):
|
/third_party/mbedtls/tests/scripts/ |
H A D | generate_test_code.py | 252 def __exit__(self, exc_type, exc_val, exc_tb): 253 self._f.__exit__(exc_type, exc_val, exc_tb)
|
/third_party/python/Lib/concurrent/futures/ |
H A D | _base.py | 646 def __exit__(self, exc_type, exc_val, exc_tb):
|
/third_party/python/Modules/_multiprocessing/ |
H A D | semaphore.c | 689 exc_tb: object = None 698 PyObject *exc_value, PyObject *exc_tb) in _multiprocessing_SemLock___exit___impl() 696 _multiprocessing_SemLock___exit___impl(SemLockObject *self, PyObject *exc_type, PyObject *exc_value, PyObject *exc_tb) _multiprocessing_SemLock___exit___impl() argument
|