Searched refs:error_perm (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython2/Lib/ |
D | ftplib.py | 66 class error_perm(Error): pass # 5xx errors class 224 raise error_perm, resp 556 except error_perm, msg:
|
D | nntplib.py | 80 error_perm = NNTPPermanentError variable
|
D | urllib.py | 907 except ftplib.error_perm, reason: 919 except ftplib.error_perm, reason:
|
/external/python/cpython2/Lib/test/ |
D | test_ftplib.py | 438 self.assertRaises(ftplib.error_perm, self.client.sendcmd, 'echo 500') 439 self.assertRaises(ftplib.error_perm, self.client.sendcmd, 'echo 599') 443 exceptions = (ftplib.error_reply, ftplib.error_temp, ftplib.error_perm,
|
/external/python/cpython2/Doc/library/ |
D | ftplib.rst | 111 .. exception:: error_perm 338 text of the response, otherwise raises :exc:`error_perm` on permission errors or
|
D | nntplib.rst | 100 backwards compatibility, the exception ``error_perm`` is equivalent to this
|