summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-02-14 22:29:34 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-02-14 22:29:34 (GMT)
commit71135624d81fac63a1684d5cf31932652f9250ff (patch)
treeba562d04771744902f979f834c1b6ba1b262705d /Misc/NEWS
parentffeee3518a9ccb0d6375bf06abe2cf8a6bc9e5b8 (diff)
downloadcpython-71135624d81fac63a1684d5cf31932652f9250ff.zip
cpython-71135624d81fac63a1684d5cf31932652f9250ff.tar.gz
cpython-71135624d81fac63a1684d5cf31932652f9250ff.tar.bz2
Issue #10287: nntplib now queries the server's CAPABILITIES first before sending MODE READER, and only sends it if not already in READER mode.
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 6180361a..06ce404 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -113,6 +113,10 @@ Core and Builtins
Library
-------
+- Issue #10287: nntplib now queries the server's CAPABILITIES first before
+ sending MODE READER, and only sends it if not already in READER mode.
+ Patch by Hynek Schlawack.
+
- Issue #13979: A bug in ctypes.util.find_library that caused
the wrong library name to be returned has been fixed.