summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-02-14 22:30:35 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-02-14 22:30:35 (GMT)
commit06b57ef9586c8095b38b58dbf04fb8de94c08c16 (patch)
tree887fb8c34ad06cb315c16f7757d827ddda0ac93a /Misc
parent2603d0a6575024f619df0f4a0e1bfbfc11c1c52f (diff)
parent71135624d81fac63a1684d5cf31932652f9250ff (diff)
downloadcpython-06b57ef9586c8095b38b58dbf04fb8de94c08c16.zip
cpython-06b57ef9586c8095b38b58dbf04fb8de94c08c16.tar.gz
cpython-06b57ef9586c8095b38b58dbf04fb8de94c08c16.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')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index a70d162..c9b0900 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -466,6 +466,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 #13993: HTMLParser is now able to handle broken end tags when
strict=False.