summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_nntplib.py
Commit message (Collapse)AuthorAgeFilesLines
* Backport test_nntplib fixes from default.Antoine Pitrou2012-06-251-2/+5
|
* Ignore X-Antivirus headers in test_nntplibNick Coghlan2012-06-171-1/+4
|
* Issue #7644: Add tests for the file argument of NNTP.head() and NNTP.body().Antoine Pitrou2012-02-151-0/+40
| | | | Patch by Hynek Schlawack.
* Issue #10287: nntplib now queries the server's CAPABILITIES first before ↵Antoine Pitrou2012-02-141-1/+50
| | | | | | sending MODE READER, and only sends it if not already in READER mode. Patch by Hynek Schlawack.
* Issue #10287: nntplib now queries the server's CAPABILITIES again after ↵Antoine Pitrou2012-02-121-5/+57
| | | | | | authenticating (since the result may change, according to RFC 4643). Patch by Hynek Schlawack.
* Closes #13258: Use callable() built-in in the standard library.Florent Xicluna2011-10-281-2/+1
|
* Make test_nntplib more robustAntoine Pitrou2010-11-211-2/+4
|
* Wrap all test_nntplib methods accessing a remote server in a ↵Antoine Pitrou2010-11-181-13/+29
| | | | | | | transient_internet() exception catcher. Wrapping the initial connection routine is not sufficient as network timeouts can then occur as part of NNTP commands.
* Make test_nntplib more robust when the "last" article in a group can't be ↵Antoine Pitrou2010-11-181-9/+26
| | | | retrieved
* Switch from gmane to another provider for NNTP tests (as gmane isn't reliableAntoine Pitrou2010-11-131-32/+45
| | | | enough). Also, use setUpClass in order to connect only once per test run.
* Issue #1926: Add support for NNTP over SSL on port 563, as well asAntoine Pitrou2010-11-091-24/+76
| | | | STARTTLS. Patch by Andrew Vant.
* Issue #10282: Add a `nntp_implementation` attribute to NNTP objects.Antoine Pitrou2010-11-051-0/+2
|
* Issue #10283: Add a `group_pattern` argument to NNTP.list().Antoine Pitrou2010-11-041-6/+29
|
* Issue #10281: nntplib now returns None for absent fields in the OVER/XOVERAntoine Pitrou2010-11-031-1/+26
| | | | response, instead of raising an exception.
* Issue #10280: NNTP.nntp_version should reflect the highest versionAntoine Pitrou2010-11-021-3/+3
| | | | advertised by the server.
* Fix NNTP when there's a ".netrc" fileAntoine Pitrou2010-09-291-1/+2
|
* Disable the usenetrc option when testing nntplibAntoine Pitrou2010-09-291-1/+2
|
* Issue #9360: Cleanup and improvements to the nntplib module. The APIAntoine Pitrou2010-09-291-0/+1091
now conforms to the philosophy of bytes and unicode separation in Python 3. A test suite has also been added.