From: Facundo Batista Date: Tue, 24 Apr 2007 13:54:38 +0000 (+0000) Subject: Added a comment about last change in urllib2.py (all 2xx responses X-Git-Tag: v2.6a1~1819 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d918a65802b062b1ce27e97abf749a8505ebb535;p=thirdparty%2FPython%2Fcpython.git Added a comment about last change in urllib2.py (all 2xx responses are ok now). --- diff --git a/Misc/NEWS b/Misc/NEWS index b84d0b555a13..0fdf4a1d5495 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -209,6 +209,10 @@ Core and builtins Library ------- +- As specified in RFC 2616, an HTTP response like 2xx indicates that + the client's request was successfully received, understood, and accepted. + Now in these cases no error is raised in urllib2. + - Bug #1290505: time.strptime's internal cache of locale information is now properly recreated when the locale is changed.