summaryrefslogtreecommitdiff
path: root/Lib/nntplib.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-29762: More use "raise from None". (#569)Serhiy Storchaka2017-04-051-1/+1
* Correct “an” → “a” with “Unicode”, “user”, “UTF”, etcMartin Panter2016-04-151-4/+4
* Issue #25523: Correct "a" article to "an" articleMartin Panter2015-11-021-1/+1
* Issue #22351: The nntplib.NNTP constructor no longer leaves the connectionSerhiy Storchaka2015-03-211-11/+25
* don't require OpenSSL SNI to pass hostname to ssl functions (#22921)Benjamin Peterson2014-11-231-2/+1
* Issue #22247: Add NNTPError to nntplib.__all__.Berker Peksag2014-09-201-2/+2
* Issues #21948 and #16040: Fix typos.Berker Peksag2014-07-091-1/+1
* Issue #20976: pyflakes: Remove unused importsVictor Stinner2014-03-201-1/+0
* Issue #19783: nntplib now supports SSLContext.check_hostname and server nameChristian Heimes2013-12-021-4/+5
* Issue #19735: Implement private function ssl._create_stdlib_context() toChristian Heimes2013-11-231-3/+1
* merge with 3.3Georg Brandl2013-10-271-1/+10
|\
| * Issue #16040: CVE-2013-1752: nntplib: Limit maximum line lengths to 2048 toGeorg Brandl2013-10-271-1/+10
* | Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a)Brett Cannon2013-07-041-1/+1
* | Issue #18200: Update the stdlib (except tests) to useBrett Cannon2013-06-131-1/+1
* | Replace IOError with OSError (#16715)Andrew Svetlov2012-12-251-1/+1
* | Issue #16717: get rid of socket.error, replace with OSErrorAndrew Svetlov2012-12-181-1/+1
|/
* #1079: Fix parsing of encoded words.R David Murray2012-06-021-1/+1
* Issue #10287: nntplib now queries the server's CAPABILITIES first before send...Antoine Pitrou2012-02-141-6/+15
|\
| * Issue #10287: nntplib now queries the server's CAPABILITIES first before send...Antoine Pitrou2012-02-141-6/+15
* | Issue #10287: nntplib now queries the server's CAPABILITIES again after authe...Antoine Pitrou2012-02-121-1/+4
|\ \ | |/
| * Issue #10287: nntplib now queries the server's CAPABILITIES again after authe...Antoine Pitrou2012-02-121-1/+4
* | Issue #13248: turn 3.2's PendingDeprecationWarning into 3.3's DeprecationWarn...Florent Xicluna2011-12-101-2/+2
* | #11515: Merge with 3.2.Ezio Melotti2011-03-151-2/+2
|\ \ | |/
| * #11515: Merge with 3.1.Ezio Melotti2011-03-151-2/+2
| |\
| | * #11515: fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-151-1/+1
* | | Issue 9795: adds context manager protocol to nntplib.NNTP class so that it ca...Giampaolo Rodolà2011-03-031-0/+14
|/ /
* | Make `usenetrc` False by default (the old behaviour of having it True byAntoine Pitrou2010-11-091-3/+3
* | Issue #1926: Add support for NNTP over SSL on port 563, as well asAntoine Pitrou2010-11-091-76/+183
* | Issue #10282: Add a `nntp_implementation` attribute to NNTP objects.Antoine Pitrou2010-11-051-0/+3
* | Issue #10283: Add a `group_pattern` argument to NNTP.list().Antoine Pitrou2010-11-041-3/+8
* | Issue #10281: nntplib now returns None for absent fields in the OVER/XOVERAntoine Pitrou2010-11-031-3/+4
* | Issue #10280: NNTP.nntp_version should reflect the highest versionAntoine Pitrou2010-11-021-1/+3
* | Fix NNTP when there's a ".netrc" fileAntoine Pitrou2010-09-291-2/+3
* | Issue #9360: Cleanup and improvements to the nntplib module. The APIAntoine Pitrou2010-09-291-290/+656
|/
* Merged revisions 72640 via svnmerge fromAntoine Pitrou2009-05-141-2/+1
* Issue #3714: nntplib module broken by str to unicode conversionChristian Heimes2008-11-051-63/+52
* Fix a bunch of doctests with the -d option of refactor.py.Guido van Rossum2007-02-091-1/+1
* Fix most trivially-findable print statements.Guido van Rossum2007-02-091-10/+10
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-1/+1
* - Bug #1015140: disambiguated the term "article id" in nntplib docs andGeorg Brandl2005-07-171-2/+2
* Patch #823072: add option to NOT use ~/.netrc in nntplib.NNTP().Martin v. Löwis2004-08-031-2/+2
* Patch #605370: Add description[s] for RFC 2980 compliance.Martin v. Löwis2004-07-261-0/+36
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-5/+5
* - Several methods of nntplib.NNTP have grown an optional file argumentGuido van Rossum2003-04-191-14/+14
* Get rid of many apply() calls.Guido van Rossum2003-02-271-1/+1
* Whitespace normalization.Tim Peters2002-11-241-1/+0
* Guard against error if .netrc is missing.Eric S. Raymond2002-11-171-7/+10
* Fix typo in commentNeal Norwitz2002-11-141-1/+1
* Make nntplib aware of ~/.netrc credentials; now they get used if they areEric S. Raymond2002-11-131-7/+23
* Remove uses of the string and types modules:Walter Dörwald2002-06-031-2/+1