Searched refs:SMTP_SSL (Results 1 – 12 of 12) sorted by relevance
/external/python/cpython3/Lib/test/ |
D | test_smtpnet.py | 51 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/ |
D | test_smtpnet.py | 14 server = smtplib.SMTP_SSL(self.testServer, self.remotePort) 21 server = smtplib.SMTP_SSL(self.testServer)
|
/external/python/cpython2/Doc/library/ |
D | smtplib.rst | 46 .. 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/ |
D | smtplib.rst | 68 .. 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/ |
D | smtplib.py | 783 class SMTP_SSL(SMTP): class
|
/external/python/cpython3/Lib/ |
D | smtplib.py | 994 class SMTP_SSL(SMTP): class
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7.2rc1.rst | 365 SMTP_SSL now uses port 465 by default as documented. Patch by Kasun Herath.
|
D | 2.7a1.rst | 2693 smtplib.SMTP_SSL._get_socket now correctly returns the socket. Patch by
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.3.rst | 1859 The :class:`~smtplib.SMTP`, :class:`~smtplib.SMTP_SSL`, and 1869 The :class:`~smtplib.SMTP_SSL` constructor and the :meth:`~smtplib.SMTP.starttls`
|
D | 2.6.rst | 2349 addition of the :class:`SMTP_SSL` class. This class supports an
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.6.rst | 2345 addition of the :class:`SMTP_SSL` class. This class supports an
|
/external/python/cpython3/Misc/ |
D | HISTORY | 9623 - 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.
|