Home
last modified time | relevance | path

Searched refs:SMTP_SSL (Results 1 – 8 of 8) sorted by relevance

/third_party/python/Lib/test/
Dtest_smtpnet.py53 server = smtplib.SMTP_SSL(self.testServer, self.remotePort)
60 server = smtplib.SMTP_SSL(self.testServer)
70 server = smtplib.SMTP_SSL(self.testServer, self.remotePort, context=context)
83 server = smtplib.SMTP_SSL(self.testServer, self.remotePort, context=context)
/third_party/python/Doc/library/
Dsmtplib.rst77 .. class:: SMTP_SSL(host='', port=0, local_hostname=None, keyfile=None, \
81 An :class:`SMTP_SSL` instance behaves exactly the same as instances of
82 :class:`SMTP`. :class:`SMTP_SSL` should be used for situations where SSL is
/third_party/python/Lib/
Dsmtplib.py1014 class SMTP_SSL(SMTP): class
/third_party/python/Misc/NEWS.d/
D3.9.0a3.rst426 :class:`~smtplib.SMTP` and :class:`~smtplib.SMTP_SSL` now raise a
/third_party/python/Doc/whatsnew/
D3.3.rst1859 The :class:`~smtplib.SMTP`, :class:`~smtplib.SMTP_SSL`, and
1869 The :class:`~smtplib.SMTP_SSL` constructor and the :meth:`~smtplib.SMTP.starttls`
D3.9.rst647 :class:`~smtplib.SMTP` and :class:`~smtplib.SMTP_SSL` now raise a :class:`ValueError`
D2.6.rst2349 addition of the :class:`SMTP_SSL` class. This class supports an
/third_party/python/Misc/
DHISTORY9623 - Issue #8809: The SMTP_SSL constructor and SMTP.starttls() now support
9681 - Issue #11927: SMTP_SSL now uses port 465 by default as documented. Patch
14761 - Issue #4066: smtplib.SMTP_SSL._get_socket now correctly returns the socket.