Home
last modified time | relevance | path

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

/third_party/python/Doc/library/
Dpoplib.rst22 Additionally, this module provides a class :class:`POP3_SSL`, which provides
54 .. class:: POP3_SSL(host, port=POP3_SSL_PORT, keyfile=None, certfile=None, timeout=None, context=No…
68 .. audit-event:: poplib.connect self,host,port poplib.POP3_SSL
70 .. audit-event:: poplib.putline self,line poplib.POP3_SSL
254 Instances of :class:`POP3_SSL` have no additional methods. The interface of this
/third_party/python/Lib/test/
Dtest_poplib.py417 self.client = poplib.POP3_SSL(self.server.host, self.server.port)
426 self.assertRaises(ValueError, poplib.POP3_SSL, self.server.host,
428 self.assertRaises(ValueError, poplib.POP3_SSL, self.server.host,
430 self.assertRaises(ValueError, poplib.POP3_SSL, self.server.host,
435 self.client = poplib.POP3_SSL(self.server.host, self.server.port,
/third_party/python/Lib/
Dpoplib.py419 class POP3_SSL(POP3): class
/third_party/python/Misc/NEWS.d/
D3.9.0a3.rst489 :class:`~poplib.POP3` and :class:`~poplib.POP3_SSL` now raise a
/third_party/python/Doc/whatsnew/
D3.9.rst615 :class:`~poplib.POP3` and :class:`~poplib.POP3_SSL` now raise a :class:`ValueError`
D3.2.rst1847 :class:`~poplib.POP3_SSL` class now accepts a *context* parameter, which is a
/third_party/python/Misc/
DHISTORY12487 - Issue #8807: poplib.POP3_SSL class now accepts a context parameter, which is a
20861 - poplib.POP3_SSL has been added.