Searched refs:excinfo (Results 1 – 10 of 10) sorted by relevance
/third_party/python/Lib/test/ |
D | test_eof.py | 51 with self.assertRaises(SyntaxError) as excinfo: 53 self.assertEqual(str(excinfo.exception), expect) 54 with self.assertRaises(SyntaxError) as excinfo: 56 self.assertEqual(str(excinfo.exception), expect)
|
D | test_argparse.py | 2067 with self.assertRaises(ArgumentParserError) as excinfo: 2070 excinfo.exception.stderr, 2079 with self.assertRaises(ArgumentParserError) as excinfo: 2082 excinfo.exception.stderr,
|
D | test_tarfile.py | 2317 with self.assertRaises(tarfile.ReadError) as excinfo: 2324 str(excinfo.exception),
|
/third_party/skia/infra/bots/ |
D | utils.py | 161 def RmTreeOnError(function, path, excinfo): argument 175 exception_type = excinfo[0] 176 exception_value = excinfo[1]
|
/third_party/libfuse/test/ |
D | conftest.py | 20 failed = outcome.excinfo is not None
|
/third_party/python/Lib/ |
D | contextlib.py | 738 def __exit__(self, *excinfo): argument 744 async def __aexit__(self, *excinfo): argument
|
/third_party/python/Lib/idlelib/ |
D | run.py | 240 typ, val, tb = excinfo = sys.exc_info() 241 sys.last_type, sys.last_value, sys.last_traceback = excinfo
|
/third_party/node/tools/gyp/pylib/gyp/ |
D | win_tool.py | 97 def _on_error(fn, path, excinfo): argument
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
D | win_tool.py | 97 def _on_error(fn, path, excinfo): argument
|
/third_party/python/Doc/library/ |
D | shutil.rst | 310 parameters: *function*, *path*, and *excinfo*. 315 *excinfo*, will be the exception information returned by
|