Home
last modified time | relevance | path

Searched refs:SMTPResponseException (Results 1 – 3 of 3) sorted by relevance

/third_party/python/Lib/
Dsmtplib.py90 class SMTPResponseException(SMTPException): class
104 class SMTPSenderRefused(SMTPResponseException):
130 class SMTPDataError(SMTPResponseException):
133 class SMTPConnectError(SMTPResponseException):
136 class SMTPHeloError(SMTPResponseException):
139 class SMTPAuthenticationError(SMTPResponseException):
284 raise SMTPResponseException(code, message)
410 raise SMTPResponseException(500, "Line too long.")
805 raise SMTPResponseException(resp, reply)
/third_party/python/Doc/library/
Dsmtplib.rst155 .. exception:: SMTPResponseException
166 :exc:`SMTPResponseException` exceptions, this sets 'sender' to the string that
/third_party/python/Lib/test/
Dtest_smtplib.py801 self.assertRaises(smtplib.SMTPResponseException, smtplib.SMTP,
1240 with self.assertRaises(smtplib.SMTPResponseException) as error: