Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/test/
Dtest_smtpnet.py51 server = smtplib.SMTP_SSL(self.testServer, self.remotePort)
58 server = smtplib.SMTP_SSL(self.testServer)
68 server = smtplib.SMTP_SSL(self.testServer, self.remotePort, context=context)
81 server = smtplib.SMTP_SSL(self.testServer, self.remotePort, context=context)
/external/python/cpython2/Lib/test/
Dtest_smtpnet.py14 server = smtplib.SMTP_SSL(self.testServer, self.remotePort)
21 server = smtplib.SMTP_SSL(self.testServer)
/external/python/cpython2/Doc/library/
Dsmtplib.rst46 .. class:: SMTP_SSL([host[, port[, local_hostname[, keyfile[, certfile[, timeout]]]]]])
48 An :class:`SMTP_SSL` instance behaves exactly the same as instances of
49 :class:`SMTP`. :class:`SMTP_SSL` should be used for situations where SSL is
/external/python/cpython3/Doc/library/
Dsmtplib.rst68 .. class:: SMTP_SSL(host='', port=0, local_hostname=None, keyfile=None, \
72 An :class:`SMTP_SSL` instance behaves exactly the same as instances of
73 :class:`SMTP`. :class:`SMTP_SSL` should be used for situations where SSL is
/external/python/cpython2/Lib/
Dsmtplib.py783 class SMTP_SSL(SMTP): class
/external/python/cpython3/Lib/
Dsmtplib.py994 class SMTP_SSL(SMTP): class
/external/python/cpython2/Misc/NEWS.d/
D2.7.2rc1.rst365 SMTP_SSL now uses port 465 by default as documented. Patch by Kasun Herath.
D2.7a1.rst2693 smtplib.SMTP_SSL._get_socket now correctly returns the socket. Patch by
/external/python/cpython3/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`
D2.6.rst2349 addition of the :class:`SMTP_SSL` class. This class supports an
/external/python/cpython2/Doc/whatsnew/
D2.6.rst2345 addition of the :class:`SMTP_SSL` class. This class supports an
/external/python/cpython3/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.