Home
last modified time | relevance | path

Searched refs:UnhashableException (Results 1 - 2 of 2) sorted by relevance

/third_party/python/Lib/idlelib/idle_test/
H A Dtest_run.py18 class UnhashableException(Exception): class
22 ex1 = UnhashableException('ex1')
23 ex2 = UnhashableException('ex2')
26 except UnhashableException:
29 except UnhashableException:
37 self.assertIn('UnhashableException: ex2', tb[3])
38 self.assertIn('UnhashableException: ex1', tb[10])
/third_party/python/Lib/test/
H A Dtest_traceback.py1188 class UnhashableException(Exception): class
1192 ex1 = UnhashableException('ex1')
1193 ex2 = UnhashableException('ex2')
1196 except UnhashableException:
1199 except UnhashableException:
1208 self.assertIn('UnhashableException: ex2', tb[3])
1209 self.assertIn('UnhashableException: ex1', tb[10])
2582 class UnhashableException(Exception): class
2586 ex1 = UnhashableException('ex1')
2587 ex2 = UnhashableException('ex
[all...]

Completed in 5 milliseconds