Home
last modified time | relevance | path

Searched refs:NNTP (Results 1 – 18 of 18) sorted by relevance

/external/python/cpython3/Doc/library/
Dnntplib.rst1 :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 …]
Demail.rst17 (: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/
Dnntplib.rst2 :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 …]
Demail.rst19 messages to SMTP (:rfc:`2821`), NNTP, or other servers; those are functions of
75 NNTP protocol client
/external/python/cpython2/Lib/test/
Dtest_nntplib.py55 nntp = nntplib.NNTP('localhost', self.port)
65 nntplib.NNTP, 'localhost', self.port)
/external/python/cpython2/Demo/scripts/
DREADME15 newslist.py List all newsgroups on a NNTP server as HTML pages
/external/python/cpython2/Lib/
Dnntplib.py100 class NNTP: class
627 s = NNTP(newshost, readermode=mode)
/external/scapy/doc/scapy/
Dtroubleshooting.rst65 …rchive <http://news.gmane.org/gmane.comp.security.scapy.general>`_, `RSS, NNTP <http://gmane.org/i…
/external/python/cpython3/Lib/test/
Dtest_nntplib.py12 from nntplib import NNTP, GroupInfo
288 NNTP_CLASS = NNTP
1439 nntp_class = nntplib.NNTP
1534 self.nntp = NNTP(support.HOST, port, usenetrc=False).__enter__()
/external/python/cpython3/Lib/
Dnntplib.py1019 class NNTP(_NNTPBase): class
1120 s = NNTP(host=args.server, port=port)
/external/python/cpython3/Misc/NEWS.d/
D3.5.0a3.rst262 The nntplib.NNTP constructor no longer leaves the connection and socket open
/external/python/cpython3/Doc/whatsnew/
D3.3.rst1560 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:
D2.4.rst1194 * The :mod:`nntplib` module's :class:`NNTP` class gained :meth:`description` and
D3.2.rst1679 :class:`nntplib.NNTP_SSL`) and explicit (using :meth:`nntplib.NNTP.starttls`)
/external/python/cpython2/Doc/whatsnew/
D2.4.rst1194 * The :mod:`nntplib` module's :class:`NNTP` class gained :meth:`description` and
/external/python/cpython3/Misc/
DHISTORY638 - 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 …]
/external/python/cpython2/Misc/
Dcheatsheet1930 nntplib An NNTP client class. Based on RFC 977.
DHISTORY4373 - 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