Searched refs:NNTP (Results 1 – 18 of 18) sorted by relevance
/external/python/cpython3/Doc/library/ |
D | nntplib.rst | 1 :mod:`nntplib` --- NNTP protocol client 5 :synopsis: NNTP protocol client (requires sockets). 10 pair: NNTP; protocol 15 This module defines the class :class:`NNTP` which implements the client side of 23 >>> s = nntplib.NNTP('news.gmane.org') 47 >>> s = nntplib.NNTP('news.gmane.org') 57 .. class:: NNTP(host, port=119, user=None, password=None, readermode=None, usenetrc=False, [timeout… 59 Return a new :class:`NNTP` object, representing a connection 60 to the NNTP server running on host *host*, listening at port *port*. 68 connecting to an NNTP server on the local machine and intend to call [all …]
|
D | email.rst | 17 (:rfc:`2821`), NNTP, or other servers; those are functions of modules such as 145 NNTP (Net News Transport Protocol) client
|
/external/python/cpython2/Doc/library/ |
D | nntplib.rst | 2 :mod:`nntplib` --- NNTP protocol client 6 :synopsis: NNTP protocol client (requires sockets). 10 pair: NNTP; protocol 17 This module defines the class :class:`NNTP` which implements the client side of 18 the NNTP protocol. It can be used to implement a news reader or poster, or 19 automated news processors. For more information on NNTP (Network News Transfer 25 >>> s = NNTP('news.gmane.org') 48 >>> s = NNTP('news.gmane.org') 58 .. class:: NNTP(host[, port [, user[, password [, readermode] [, usenetrc]]]]) 60 Return a new instance of the :class:`NNTP` class, representing a connection [all …]
|
D | email.rst | 19 messages to SMTP (:rfc:`2821`), NNTP, or other servers; those are functions of 75 NNTP protocol client
|
/external/python/cpython2/Lib/test/ |
D | test_nntplib.py | 55 nntp = nntplib.NNTP('localhost', self.port) 65 nntplib.NNTP, 'localhost', self.port)
|
/external/python/cpython2/Demo/scripts/ |
D | README | 15 newslist.py List all newsgroups on a NNTP server as HTML pages
|
/external/python/cpython2/Lib/ |
D | nntplib.py | 100 class NNTP: class 627 s = NNTP(newshost, readermode=mode)
|
/external/scapy/doc/scapy/ |
D | troubleshooting.rst | 65 …rchive <http://news.gmane.org/gmane.comp.security.scapy.general>`_, `RSS, NNTP <http://gmane.org/i…
|
/external/python/cpython3/Lib/test/ |
D | test_nntplib.py | 10 from nntplib import NNTP, GroupInfo 283 NNTP_CLASS = NNTP 1429 nntp_class = nntplib.NNTP 1524 self.nntp = NNTP(support.HOST, port, usenetrc=False).__enter__()
|
/external/python/cpython3/Lib/ |
D | nntplib.py | 1019 class NNTP(_NNTPBase): class 1120 s = NNTP(host=args.server, port=port)
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.3.rst | 1560 The :class:`nntplib.NNTP` class now supports the context management protocol to 1561 unconditionally consume :exc:`socket.error` exceptions and to close the NNTP 1564 >>> from nntplib import NNTP 1565 >>> with NNTP('news.gmane.org') as n:
|
D | 2.4.rst | 1194 * The :mod:`nntplib` module's :class:`NNTP` class gained :meth:`description` and
|
D | 3.2.rst | 1676 :class:`nntplib.NNTP_SSL`) and explicit (using :meth:`nntplib.NNTP.starttls`)
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.4.rst | 1194 * The :mod:`nntplib` module's :class:`NNTP` class gained :meth:`description` and
|
/external/python/cpython3/Misc/ |
D | HISTORY | 638 - Issue #22351: The nntplib.NNTP constructor no longer leaves the connection 7418 - test_nntplib now tolerates being run from behind NNTP gateways that add 8965 'importlib.abc.PyPycLoader', 'nntplib.NNTP.xgtitle', 'nntplib.NNTP.xpath', 9997 - Issue #9795: add context management protocol support for nntplib.NNTP class. 11590 - ``usenetrc`` is now false by default for NNTP objects. 11592 - Issue #1926: Add support for NNTP over SSL on port 563, as well as STARTTLS. 11627 - Issue #10282: Add a ``nntp_implementation`` attribute to NNTP objects. 11629 - Issue #10283: Add a ``group_pattern`` argument to NNTP.list(). 11643 - Issue #10280: NNTP.nntp_version should reflect the highest version advertised 21757 - Several methods of nntplib.NNTP have grown an optional file argument [all …]
|
D | NEWS | 6461 - Issue #22351: The nntplib.NNTP constructor no longer leaves the connection
|
/external/python/cpython2/Misc/ |
D | cheatsheet | 1930 nntplib An NNTP client class. Based on RFC 977.
|
D | HISTORY | 4373 - Several methods of nntplib.NNTP have grown an optional file argument 6570 - The nntplib module's NNTP.body() method has grown a 'file' argument 12722 and password arguments to NNTP.__init__(), for nntp servers that need 16673 nntplib: a client interface to NNTP servers
|