/third_party/python/Python/ |
D | errors.c | 1236 PyObject *exc_value, PyObject *exc_tb, in make_unraisable_hook_args() argument 1257 ADD_ITEM(exc_tb); in make_unraisable_hook_args() 1278 PyObject *exc_value, PyObject *exc_tb, in write_unraisable_exc_file() argument 1315 if (exc_tb != NULL && exc_tb != Py_None) { in write_unraisable_exc_file() 1316 if (PyTraceBack_Print(exc_tb, file) < 0) { in write_unraisable_exc_file() 1397 PyObject *exc_value, PyObject *exc_tb, PyObject *err_msg, in write_unraisable_exc() argument 1408 int res = write_unraisable_exc_file(tstate, exc_type, exc_value, exc_tb, in write_unraisable_exc() 1431 PyObject *exc_tb = PyStructSequence_GET_ITEM(args, 2); in _PyErr_WriteUnraisableDefaultHook() local 1435 if (write_unraisable_exc(tstate, exc_type, exc_value, exc_tb, err_msg, obj) < 0) { in _PyErr_WriteUnraisableDefaultHook() 1460 PyObject *exc_type, *exc_value, *exc_tb; in _PyErr_WriteUnraisableMsg() local [all …]
|
D | sysmodule.c | 73 PyObject *exc_type, *exc_value, *exc_tb; in sys_get_object_id() local 74 _PyErr_Fetch(tstate, &exc_type, &exc_value, &exc_tb); in sys_get_object_id() 78 _PyErr_Restore(tstate, exc_type, exc_value, exc_tb); in sys_get_object_id() 104 PyObject *exc_type, *exc_value, *exc_tb; in PySys_GetObject() local 105 _PyErr_Fetch(tstate, &exc_type, &exc_value, &exc_tb); in PySys_GetObject() 109 _PyErr_Restore(tstate, exc_type, exc_value, exc_tb); in PySys_GetObject() 210 PyObject *exc_type, *exc_value, *exc_tb; in sys_audit_tstate() local 211 _PyErr_Fetch(ts, &exc_type, &exc_value, &exc_tb); in sys_audit_tstate() 300 _PyErr_Restore(ts, exc_type, exc_value, exc_tb); in sys_audit_tstate() 306 Py_XDECREF(exc_tb); in sys_audit_tstate()
|
/third_party/boost/tools/build/test/ |
D | test_all.py | 71 exc_type, exc_value, exc_tb = sys.exc_info() 75 BoostBuild.annotate_stack_trace(exc_tb) 80 del exc_tb
|
/third_party/python/Lib/multiprocessing/dummy/ |
D | connection.py | 36 def __exit__(self, exc_type, exc_value, exc_tb): argument 74 def __exit__(self, exc_type, exc_value, exc_tb): argument
|
/third_party/python/Modules/_ssl/ |
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/Modules/_multiprocessing/clinic/ |
D | semaphore.c.h | 363 PyObject *exc_value, PyObject *exc_tb); 371 PyObject *exc_tb = Py_None; in _multiprocessing_SemLock___exit__() local 387 exc_tb = args[2]; in _multiprocessing_SemLock___exit__() 389 return_value = _multiprocessing_SemLock___exit___impl(self, exc_type, exc_value, exc_tb); in _multiprocessing_SemLock___exit__()
|
/third_party/python/Lib/idlelib/ |
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/_sqlite/clinic/ |
D | connection.c.h | 684 PyObject *exc_value, PyObject *exc_tb); 692 PyObject *exc_tb; in pysqlite_connection_exit() local 699 exc_tb = args[2]; in pysqlite_connection_exit() 700 return_value = pysqlite_connection_exit_impl(self, exc_type, exc_value, exc_tb); in pysqlite_connection_exit()
|
/third_party/grpc/src/python/grpcio/grpc/framework/foundation/ |
D | logging_pool.py | 47 def __exit__(self, exc_type, exc_val, exc_tb): argument
|
/third_party/grpc/src/python/grpcio_testing/grpc_testing/_channel/ |
D | _channel.py | 67 def __exit__(self, exc_type, exc_val, exc_tb): argument
|
/third_party/python/Lib/xmlrpc/ |
D | server.py | 273 exc_type, exc_value, exc_tb = sys.exc_info() 281 exc_type = exc_value = exc_tb = None 372 exc_type, exc_value, exc_tb = sys.exc_info() 380 exc_type = exc_value = exc_tb = None
|
/third_party/python/Modules/clinic/ |
D | selectmodule.c.h | 874 PyObject *exc_value, PyObject *exc_tb); 882 PyObject *exc_tb = Py_None; in select_epoll___exit__() local 898 exc_tb = args[2]; in select_epoll___exit__() 900 return_value = select_epoll___exit___impl(self, exc_type, exc_value, exc_tb); in select_epoll___exit__()
|
/third_party/python/Lib/test/ |
D | audit-tests.py | 274 def excepthook(exc_type, exc_value, exc_tb): argument 276 sys.__excepthook__(exc_type, exc_value, exc_tb)
|
D | test_contextlib_async.py | 468 async def _expect_exc(exc_type, exc, exc_tb): argument 472 async def _expect_ok(exc_type, exc, exc_tb): argument 475 self.assertIsNone(exc_tb)
|
D | test_contextlib.py | 618 def _expect_exc(exc_type, exc, exc_tb): argument 622 def _expect_ok(exc_type, exc, exc_tb): argument 625 self.assertIsNone(exc_tb)
|
D | test_raise.py | 22 def __exit__(self, exc_type, exc_value, exc_tb): argument
|
/third_party/grpc/src/python/grpcio/grpc/experimental/aio/ |
D | _base_channel.py | 196 async def __aexit__(self, exc_type, exc_val, exc_tb): argument
|
/third_party/grpc/src/python/grpcio/grpc/aio/ |
D | _base_channel.py | 200 async def __aexit__(self, exc_type, exc_val, exc_tb): argument
|
/third_party/grpc/src/python/grpcio_tests/tests/unit/ |
D | _tcp_proxy.py | 140 def __exit__(self, exc_type, exc_val, exc_tb): argument
|
/third_party/python/Modules/ |
D | _tkinter.c | 1381 PyObject **exc_type, **exc_value, **exc_tb; member 1498 PyErr_Fetch(e->exc_type, e->exc_value, e->exc_tb); in Tkapp_CallProc() 1513 PyErr_Fetch(e->exc_type, e->exc_value, e->exc_tb); in Tkapp_CallProc() 1560 PyObject *exc_type, *exc_value, *exc_tb; in Tkapp_Call() local 1574 ev->exc_tb = &exc_tb; in Tkapp_Call() 1581 PyErr_Restore(exc_type, exc_value, exc_tb); in Tkapp_Call()
|
/third_party/grpc/src/python/grpcio/grpc/beta/ |
D | _client_adaptations.py | 664 def __exit__(self, exc_type, exc_val, exc_tb): argument 692 def __exit__(self, exc_type, exc_val, exc_tb): argument
|
D | _server_adaptations.py | 366 def __exit__(self, exc_type, exc_val, exc_tb): argument
|
/third_party/python/Lib/test/libregrtest/ |
D | save_env.py | 309 def __exit__(self, exc_type, exc_val, exc_tb): argument
|
/third_party/python/Lib/multiprocessing/ |
D | managers.py | 655 def __exit__(self, exc_type, exc_val, exc_tb): argument 1053 def __exit__(self, exc_type, exc_val, exc_tb): argument 1189 def __exit__(self, exc_type, exc_val, exc_tb): argument
|
D | connection.py | 267 def __exit__(self, exc_type, exc_value, exc_tb): argument 494 def __exit__(self, exc_type, exc_value, exc_tb): argument
|