Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/
Dsmtplib.py66 class SMTPException(Exception): class
69 class SMTPServerDisconnected(SMTPException):
77 class SMTPResponseException(SMTPException):
104 class SMTPRecipientsRefused(SMTPException):
586 raise SMTPException("SMTP AUTH extension not supported by server.")
619 raise SMTPException("No suitable authentication method found.")
645 raise SMTPException("STARTTLS extension not supported by server.")
Dsmtpd.py373 except (socket.error, smtplib.SMTPException), e:
/external/python/cpython3/Lib/
Dsmtplib.py71 class SMTPException(OSError): class
74 class SMTPNotSupportedError(SMTPException):
81 class SMTPServerDisconnected(SMTPException):
89 class SMTPResponseException(SMTPException):
116 class SMTPRecipientsRefused(SMTPException):
710 raise SMTPException("No suitable authentication method found.")
Dsmtpd.py768 except (OSError, smtplib.SMTPException) as e:
/external/python/cpython3/Lib/test/
Dtest_smtpnet.py35 except smtplib.SMTPException as e:
/external/python/cpython2/Doc/library/
Dsmtplib.rst82 .. exception:: SMTPException
261 :exc:`SMTPException`
282 :exc:`SMTPException`
/external/python/cpython3/Doc/library/
Dsmtplib.rst123 .. exception:: SMTPException
129 SMTPException became subclass of :exc:`OSError`
316 :exc:`SMTPException`
419 :exc:`SMTPException`.
/external/python/cpython3/Doc/whatsnew/
D3.4.rst1382 :exc:`~smtplib.SMTPException` is now a subclass of :exc:`OSError`, which allows
/external/python/cpython3/Misc/
DHISTORY5087 - Issue #2118: SMTPException is now a subclass of OSError.