Home
last modified time | relevance | path

Searched refs:NNTPTemporaryError (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Lib/
Dnntplib.py61 class NNTPTemporaryError(NNTPError): class
79 error_temp = NNTPTemporaryError
136 except NNTPTemporaryError, e:
227 raise NNTPTemporaryError(resp)
/external/python/cpython3/Lib/test/
Dtest_nntplib.py175 except nntplib.NNTPTemporaryError as e:
857 with self.assertRaises(nntplib.NNTPTemporaryError) as cm:
860 with self.assertRaises(nntplib.NNTPTemporaryError) as cm:
903 with self.assertRaises(nntplib.NNTPTemporaryError) as cm:
969 with self.assertRaises(nntplib.NNTPTemporaryError) as cm:
1017 with self.assertRaises(nntplib.NNTPTemporaryError) as cm:
1064 with self.assertRaises(nntplib.NNTPTemporaryError) as cm:
1181 with self.assertRaises(nntplib.NNTPTemporaryError) as cm:
1189 with self.assertRaises(nntplib.NNTPTemporaryError) as cm:
1482 Handler, nntplib.NNTPTemporaryError, Handler.welcome)
/external/python/cpython3/Lib/
Dnntplib.py109 class NNTPTemporaryError(NNTPError): class
391 except (NNTPPermanentError, NNTPTemporaryError):
454 raise NNTPTemporaryError(resp)
987 except NNTPTemporaryError as e:
/external/python/cpython2/Doc/library/
Dnntplib.rst90 .. exception:: NNTPTemporaryError
/external/python/cpython3/Doc/library/
Dnntplib.rst126 .. exception:: NNTPTemporaryError
/external/python/cpython3/Lib/test/support/
D__init__.py1464 except nntplib.NNTPTemporaryError as err: