summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-02-12 18:15:09 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-02-12 18:15:09 (GMT)
commit425b8e85a99ee0c21a6f805e123d90e35f9f6a9b (patch)
treed74cc44c1f3f88cb65f60823c746b5ac2f7007a5 /Misc
parent2f234db3ebeb2417291bfe31f4a084f5fc280c66 (diff)
parent54411c1784bc404448f496e7a9bf657eaab14daf (diff)
downloadcpython-425b8e85a99ee0c21a6f805e123d90e35f9f6a9b.zip
cpython-425b8e85a99ee0c21a6f805e123d90e35f9f6a9b.tar.gz
cpython-425b8e85a99ee0c21a6f805e123d90e35f9f6a9b.tar.bz2
Issue #10287: nntplib now queries the server's CAPABILITIES again after authenticating (since the result may change, according to RFC 4643).
Patch by Hynek Schlawack.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c362252..3ecdec8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -466,6 +466,10 @@ Core and Builtins
Library
-------
+- Issue #10287: nntplib now queries the server's CAPABILITIES again after
+ authenticating (since the result may change, according to RFC 4643).
+ Patch by Hynek Schlawack.
+
- Issue #13989: Document that GzipFile does not support text mode, and give a
more helpful error message when opened with an invalid mode string.