Home
last modified time | relevance | path

Searched refs:SMTPException (Results 1 – 7 of 7) sorted by relevance

/third_party/python/Lib/
Dsmtplib.py72 class SMTPException(OSError): class
75 class SMTPNotSupportedError(SMTPException):
82 class SMTPServerDisconnected(SMTPException):
90 class SMTPResponseException(SMTPException):
117 class SMTPRecipientsRefused(SMTPException):
656 raise SMTPException(
730 raise SMTPException("No suitable authentication method found.")
Dsmtpd.py779 except (OSError, smtplib.SMTPException) as e:
/third_party/python/Lib/test/
Dtest_smtpnet.py37 except smtplib.SMTPException as e:
Dtest_smtplib.py1169 with self.assertRaisesRegex(smtplib.SMTPException, expect) as cm:
/third_party/python/Doc/library/
Dsmtplib.rst139 .. exception:: SMTPException
145 SMTPException became subclass of :exc:`OSError`
335 :exc:`SMTPException`
438 :exc:`SMTPException`.
/third_party/python/Doc/whatsnew/
D3.4.rst1382 :exc:`~smtplib.SMTPException` is now a subclass of :exc:`OSError`, which allows
/third_party/python/Misc/
DHISTORY5087 - Issue #2118: SMTPException is now a subclass of OSError.