Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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. |