summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-02-12 18:14:17 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-02-12 18:14:17 (GMT)
commit54411c1784bc404448f496e7a9bf657eaab14daf (patch)
treee7917bd18d0652cbbfe6883d9c8e4a7073583a95 /Misc/NEWS
parent9ce366a5a691fb929c41d7f2c065bcbbddc81026 (diff)
downloadcpython-54411c1784bc404448f496e7a9bf657eaab14daf.zip
cpython-54411c1784bc404448f496e7a9bf657eaab14daf.tar.gz
cpython-54411c1784bc404448f496e7a9bf657eaab14daf.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/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 8ecb67d..73bdf82 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -113,6 +113,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.