Home
last modified time | relevance | path

Searched refs:error_temp (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_ftplib.py445 self.assertRaises(ftplib.error_temp, self.client.sendcmd, 'echo 400')
446 self.assertRaises(ftplib.error_temp, self.client.sendcmd, 'echo 499')
452 exceptions = (ftplib.error_reply, ftplib.error_temp, ftplib.error_perm,
/external/python/cpython3/Lib/
Dftplib.py59 class error_temp(Error): pass # 4xx errors class
244 raise error_temp(resp)
/external/python/cpython2/Lib/
Dftplib.py65 class error_temp(Error): pass # 4xx errors class
224 raise error_temp, resp
Dnntplib.py79 error_temp = NNTPTemporaryError variable
/external/python/cpython3/Lib/test/
Dtest_ftplib.py497 self.assertRaises(ftplib.error_temp, self.client.sendcmd, 'echo 400')
498 self.assertRaises(ftplib.error_temp, self.client.sendcmd, 'echo 499')
504 exceptions = (ftplib.error_reply, ftplib.error_temp, ftplib.error_perm,
/external/python/cpython2/Doc/library/
Dnntplib.rst93 backwards compatibility, the exception ``error_temp`` is equivalent to this
Dftplib.rst105 .. exception:: error_temp
/external/python/cpython3/Doc/library/
Dftplib.rst123 .. exception:: error_temp