Searched refs:SMTPResponseException (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython2/Lib/ |
D | smtplib.py | 77 class SMTPResponseException(SMTPException): class 91 class SMTPSenderRefused(SMTPResponseException): 117 class SMTPDataError(SMTPResponseException): 120 class SMTPConnectError(SMTPResponseException): 123 class SMTPHeloError(SMTPResponseException): 126 class SMTPAuthenticationError(SMTPResponseException): 373 raise SMTPResponseException(500, "Line too long.") 664 raise SMTPResponseException(resp, reply)
|
/external/python/cpython3/Lib/ |
D | smtplib.py | 89 class SMTPResponseException(SMTPException): class 103 class SMTPSenderRefused(SMTPResponseException): 129 class SMTPDataError(SMTPResponseException): 132 class SMTPConnectError(SMTPResponseException): 135 class SMTPHeloError(SMTPResponseException): 138 class SMTPAuthenticationError(SMTPResponseException): 282 raise SMTPResponseException(code, message) 403 raise SMTPResponseException(500, "Line too long.") 789 raise SMTPResponseException(resp, reply)
|
/external/python/cpython2/Doc/library/ |
D | smtplib.rst | 95 .. exception:: SMTPResponseException 106 :exc:`SMTPResponseException` exceptions, this sets 'sender' to the string that
|
/external/python/cpython2/Lib/test/ |
D | test_smtplib.py | 320 self.assertRaises(smtplib.SMTPResponseException, smtplib.SMTP,
|
/external/python/cpython3/Doc/library/ |
D | smtplib.rst | 155 .. exception:: SMTPResponseException 166 :exc:`SMTPResponseException` exceptions, this sets 'sender' to the string that
|
/external/python/cpython3/Lib/test/ |
D | test_smtplib.py | 731 self.assertRaises(smtplib.SMTPResponseException, smtplib.SMTP, 1127 with self.assertRaises(smtplib.SMTPResponseException) as error:
|