Home
last modified time | relevance | path

Searched refs:RunFailedError (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Modules/
D_xxsubinterpretersmodule.c1800 static PyObject * RunFailedError = NULL; variable
1807 if (RunFailedError == NULL) { in interp_exceptions_init()
1809 RunFailedError = PyErr_NewException("_xxsubinterpreters.RunFailedError", in interp_exceptions_init()
1811 if (RunFailedError == NULL) { in interp_exceptions_init()
1814 if (PyDict_SetItemString(ns, "RunFailedError", RunFailedError) != 0) { in interp_exceptions_init()
1947 _sharedexception_apply(exc, RunFailedError); in _run_script_in_interpreter()
/external/python/cpython3/Lib/test/
Dtest__xxsubinterpreters.py880 with self.assertRaises(interpreters.RunFailedError) as caught:
1362 with self.assertRaises(interpreters.RunFailedError) as cm:
1367 with self.assertRaises(interpreters.RunFailedError) as cm: