Searched defs:UnexpectedException (Results 1 - 2 of 2) sorted by relevance

/external/python/cpython2/Lib/
H A Ddoctest.py77 'UnexpectedException',
1688 class UnexpectedException(Exception): class in inherits:Exception
1710 If an unexpected exception occurs, an UnexpectedException is raised.
1718 ... except UnexpectedException, failure:
1778 UnexpectedException: <DocTest foo from foo.py:0 (2 examples)>
1805 raise UnexpectedException(test, example, exc_info)
2249 UnexpectedException errors if there is an unexpected
2257 ... except UnexpectedException, failure:
2260 The UnexpectedException contains the test, the example, and
/external/python/cpython3/Lib/
H A Ddoctest.py78 'UnexpectedException',
1728 class UnexpectedException(Exception): class in inherits:Exception
1750 If an unexpected exception occurs, an UnexpectedException is raised.
1758 ... except UnexpectedException as f:
1818 doctest.UnexpectedException: <DocTest foo from foo.py:0 (2 examples)>
1845 raise UnexpectedException(test, example, exc_info)
2222 UnexpectedException errors if there is an unexpected
2230 ... except UnexpectedException as f:
2233 The UnexpectedException contains the test, the example, and

Completed in 99 milliseconds