Home
last modified time | relevance | path

Searched refs:error_proto (Results 1 – 5 of 5) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dpoplib.py22 class error_proto(Exception): pass class
108 if not line: raise error_proto('-ERR EOF')
128 raise error_proto(resp)
252 except error_proto, val:
284 raise error_proto('-ERR APOP not supported by server')
359 raise error_proto('-ERR EOF')
395 except error_proto, val:
Dftplib.py65 class error_proto(Error): pass # response does not begin with [1-5] class
220 raise error_proto, resp
239 raise error_proto, resp
269 raise error_proto, 'unsupported address family'
797 raise error_proto, resp
812 if left < 0: raise error_proto, resp
815 raise error_proto, resp # should contain '(|||port|)'
817 raise error_proto, resp
820 raise error_proto, resp
866 if treply[:3] not in ('125', '150'): raise error_proto # RFC 959
[all …]
Dnntplib.py74 error_proto = NNTPProtocolError variable
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_poplib.py175 self.assertRaises(poplib.error_proto, self.client._shortcmd, 'echo -err')
179 self.assertRaises(poplib.error_proto, self.client.user, 'invalid')
183 self.assertRaises(poplib.error_proto, self.client.user, 'invalid')
Dtest_ftplib.py426 self.assertRaises(ftplib.error_proto, self.client.sendcmd, 'echo 999')
430 ftplib.error_proto, ftplib.Error, IOError, EOFError)