From: Antoine Pitrou Date: Tue, 14 Feb 2012 22:30:35 +0000 (+0100) Subject: Issue #10287: nntplib now queries the server's CAPABILITIES first before sending... X-Git-Tag: v3.3.0a1~183 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=06b57ef9586c8095b38b58dbf04fb8de94c08c16;p=thirdparty%2FPython%2Fcpython.git 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. --- 06b57ef9586c8095b38b58dbf04fb8de94c08c16 diff --cc Misc/NEWS index a70d162ad398,06ce40474d6c..c9b0900a9021 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -466,6 -113,13 +466,10 @@@ Core and Builtin 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. - - Issue #13993: HTMLParser is now able to handle broken end tags when strict=False.