Searched refs:ExitNow (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython2/Lib/test/ |
D | test_asyncore.py | 44 raise asyncore.ExitNow() 97 self.assertRaises(asyncore.ExitNow, asyncore.read, tr1) 98 self.assertRaises(asyncore.ExitNow, asyncore.write, tr1) 99 self.assertRaises(asyncore.ExitNow, asyncore._exception, tr1) 171 self.assertRaises(asyncore.ExitNow, asyncore.readwrite, tr1, flag)
|
/external/python/cpython3/Lib/test/ |
D | test_asyncore.py | 44 raise asyncore.ExitNow() 107 self.assertRaises(asyncore.ExitNow, asyncore.read, tr1) 108 self.assertRaises(asyncore.ExitNow, asyncore.write, tr1) 109 self.assertRaises(asyncore.ExitNow, asyncore._exception, tr1) 181 self.assertRaises(asyncore.ExitNow, asyncore.readwrite, tr1, flag)
|
/external/python/cpython3/Lib/ |
D | asyncore.py | 76 class ExitNow(Exception): class 79 _reraised_exceptions = (ExitNow, KeyboardInterrupt, SystemExit)
|
/external/python/cpython2/Lib/ |
D | asyncore.py | 76 class ExitNow(Exception): class 79 _reraised_exceptions = (ExitNow, KeyboardInterrupt, SystemExit)
|