/prebuilts/gdb/darwin-x86/lib/python2.7/ |
poplib.py | 18 __all__ = ["POP3","error_proto"] 22 class error_proto(Exception): pass class in inherits:Exception 59 Raises one exception: 'error_proto'. 103 # Raise error_proto('-ERR EOF') if the connection is closed. 108 if not line: raise error_proto('-ERR EOF') 121 # Raise 'error_proto' if the response doesn't start with '+'. 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' [all...] |
ftplib.py | 65 class error_proto(Error): pass # response does not begin with [1-5] class in inherits:Error 220 raise error_proto, resp 239 raise error_proto, resp 269 raise error_proto, 'unsupported address family' 796 Raises error_proto if it does not contain '(h1,h2,h3,h4,p1,p2)' 807 raise error_proto, resp 816 Raises error_proto if it does not contain '(|||port|)' 822 if left < 0: raise error_proto, resp 825 raise error_proto, resp # should contain '(|||port|)' 827 raise error_proto, res [all...] |
nntplib.py | 37 "error_reply","error_temp","error_perm","error_proto", 74 error_proto = NNTPProtocolError variable
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
poplib.py | 18 __all__ = ["POP3","error_proto"] 22 class error_proto(Exception): pass class in inherits:Exception 59 Raises one exception: 'error_proto'. 103 # Raise error_proto('-ERR EOF') if the connection is closed. 108 if not line: raise error_proto('-ERR EOF') 121 # Raise 'error_proto' if the response doesn't start with '+'. 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' [all...] |
ftplib.py | 65 class error_proto(Error): pass # response does not begin with [1-5] class in inherits:Error 220 raise error_proto, resp 239 raise error_proto, resp 269 raise error_proto, 'unsupported address family' 796 Raises error_proto if it does not contain '(h1,h2,h3,h4,p1,p2)' 807 raise error_proto, resp 816 Raises error_proto if it does not contain '(|||port|)' 822 if left < 0: raise error_proto, resp 825 raise error_proto, resp # should contain '(|||port|)' 827 raise error_proto, res [all...] |
nntplib.py | 37 "error_reply","error_temp","error_perm","error_proto", 74 error_proto = NNTPProtocolError variable
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
poplib.py | 18 __all__ = ["POP3","error_proto"] 22 class error_proto(Exception): pass class in inherits:Exception 59 Raises one exception: 'error_proto'. 103 # Raise error_proto('-ERR EOF') if the connection is closed. 108 if not line: raise error_proto('-ERR EOF') 121 # Raise 'error_proto' if the response doesn't start with '+'. 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' [all...] |
ftplib.py | 65 class error_proto(Error): pass # response does not begin with [1-5] class in inherits:Error 220 raise error_proto, resp 239 raise error_proto, resp 269 raise error_proto, 'unsupported address family' 796 Raises error_proto if it does not contain '(h1,h2,h3,h4,p1,p2)' 807 raise error_proto, resp 816 Raises error_proto if it does not contain '(|||port|)' 822 if left < 0: raise error_proto, resp 825 raise error_proto, resp # should contain '(|||port|)' 827 raise error_proto, res [all...] |
nntplib.py | 37 "error_reply","error_temp","error_perm","error_proto", 74 error_proto = NNTPProtocolError variable
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
poplib.py | 18 __all__ = ["POP3","error_proto"] 22 class error_proto(Exception): pass class in inherits:Exception 59 Raises one exception: 'error_proto'. 103 # Raise error_proto('-ERR EOF') if the connection is closed. 108 if not line: raise error_proto('-ERR EOF') 121 # Raise 'error_proto' if the response doesn't start with '+'. 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' [all...] |
ftplib.py | 65 class error_proto(Error): pass # response does not begin with [1-5] class in inherits:Error 220 raise error_proto, resp 239 raise error_proto, resp 269 raise error_proto, 'unsupported address family' 796 Raises error_proto if it does not contain '(h1,h2,h3,h4,p1,p2)' 807 raise error_proto, resp 816 Raises error_proto if it does not contain '(|||port|)' 822 if left < 0: raise error_proto, resp 825 raise error_proto, resp # should contain '(|||port|)' 827 raise error_proto, res [all...] |
nntplib.py | 37 "error_reply","error_temp","error_perm","error_proto", 74 error_proto = NNTPProtocolError variable
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_poplib.py | 175 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')
|
test_ftplib.py | 426 self.assertRaises(ftplib.error_proto, self.client.sendcmd, 'echo 999') 430 ftplib.error_proto, ftplib.Error, IOError, EOFError)
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_poplib.py | 175 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')
|
test_ftplib.py | 426 self.assertRaises(ftplib.error_proto, self.client.sendcmd, 'echo 999') 430 ftplib.error_proto, ftplib.Error, IOError, EOFError)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_poplib.py | 175 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')
|
test_ftplib.py | 426 self.assertRaises(ftplib.error_proto, self.client.sendcmd, 'echo 999') 430 ftplib.error_proto, ftplib.Error, IOError, EOFError)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_poplib.py | 175 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')
|
test_ftplib.py | 426 self.assertRaises(ftplib.error_proto, self.client.sendcmd, 'echo 999') 430 ftplib.error_proto, ftplib.Error, IOError, EOFError)
|