Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #16717: get rid of socket.error, replace with OSError | Andrew Svetlov | 2012-12-18 | 1 | -1/+1 |
| | |||||
* | Fix test to really run behind a NNTP virus checker | Antoine Pitrou | 2012-06-24 | 1 | -2/+5 |
| | |||||
* | Merge from 3.2 (Ignore X-Antivirus headers in test_nntplib) | Nick Coghlan | 2012-06-17 | 1 | -1/+4 |
|\ | |||||
| * | Ignore X-Antivirus headers in test_nntplib | Nick Coghlan | 2012-06-17 | 1 | -1/+4 |
| | | |||||
* | | Issue #7644: Add tests for the file argument of NNTP.head() and NNTP.body(). | Antoine Pitrou | 2012-02-15 | 1 | -0/+40 |
|\ \ | |/ | | | | | Patch by Hynek Schlawack. | ||||
| * | Issue #7644: Add tests for the file argument of NNTP.head() and NNTP.body(). | Antoine Pitrou | 2012-02-15 | 1 | -0/+40 |
| | | | | | | | | Patch by Hynek Schlawack. | ||||
* | | Issue #10287: nntplib now queries the server's CAPABILITIES first before ↵ | Antoine Pitrou | 2012-02-14 | 1 | -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 first before ↵ | Antoine Pitrou | 2012-02-14 | 1 | -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 Pitrou | 2012-02-12 | 1 | -5/+57 |
|\ \ | |/ | | | | | | | | | authenticating (since the result may change, according to RFC 4643). Patch by Hynek Schlawack. | ||||
| * | Issue #10287: nntplib now queries the server's CAPABILITIES again after ↵ | Antoine Pitrou | 2012-02-12 | 1 | -5/+57 |
| | | | | | | | | | | | | authenticating (since the result may change, according to RFC 4643). Patch by Hynek Schlawack. | ||||
* | | Merge 3.2 | Florent Xicluna | 2011-10-28 | 1 | -2/+1 |
|\ \ | |/ | |||||
| * | Closes #13258: Use callable() built-in in the standard library. | Florent Xicluna | 2011-10-28 | 1 | -2/+1 |
| | | |||||
* | | #13012: use splitlines(keepends=True/False) instead of splitlines(0/1). | Ezio Melotti | 2011-09-28 | 1 | -2/+2 |
| | | |||||
* | | Issue 9795: adds context manager protocol to nntplib.NNTP class so that it ↵ | Giampaolo Rodolà | 2011-03-03 | 1 | -0/+21 |
| | | | | | | | | can used with the 'with' statement. | ||||
* | | Normalize the encoding names for Latin-1 and UTF-8 to | Marc-André Lemburg | 2011-02-25 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | 'latin-1' and 'utf-8'. These are optimized in the Python Unicode implementation to result in more direct processing, bypassing the codec registry. Also see issue11303. | ||||
* | | Fix imports from collections.abc | Raymond Hettinger | 2011-02-23 | 1 | -2/+2 |
|/ | |||||
* | Make test_nntplib more robust | Antoine Pitrou | 2010-11-21 | 1 | -2/+4 |
| | |||||
* | Wrap all test_nntplib methods accessing a remote server in a ↵ | Antoine Pitrou | 2010-11-18 | 1 | -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 Pitrou | 2010-11-18 | 1 | -9/+26 |
| | | | | retrieved | ||||
* | Switch from gmane to another provider for NNTP tests (as gmane isn't reliable | Antoine Pitrou | 2010-11-13 | 1 | -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 as | Antoine Pitrou | 2010-11-09 | 1 | -24/+76 |
| | | | | STARTTLS. Patch by Andrew Vant. | ||||
* | Issue #10282: Add a `nntp_implementation` attribute to NNTP objects. | Antoine Pitrou | 2010-11-05 | 1 | -0/+2 |
| | |||||
* | Issue #10283: Add a `group_pattern` argument to NNTP.list(). | Antoine Pitrou | 2010-11-04 | 1 | -6/+29 |
| | |||||
* | Issue #10281: nntplib now returns None for absent fields in the OVER/XOVER | Antoine Pitrou | 2010-11-03 | 1 | -1/+26 |
| | | | | response, instead of raising an exception. | ||||
* | Issue #10280: NNTP.nntp_version should reflect the highest version | Antoine Pitrou | 2010-11-02 | 1 | -3/+3 |
| | | | | advertised by the server. | ||||
* | Fix NNTP when there's a ".netrc" file | Antoine Pitrou | 2010-09-29 | 1 | -1/+2 |
| | |||||
* | Disable the usenetrc option when testing nntplib | Antoine Pitrou | 2010-09-29 | 1 | -1/+2 |
| | |||||
* | Issue #9360: Cleanup and improvements to the nntplib module. The API | Antoine Pitrou | 2010-09-29 | 1 | -0/+1091 |
now conforms to the philosophy of bytes and unicode separation in Python 3. A test suite has also been added. |