From: Charles-François Natali Date: Sun, 18 Dec 2011 15:08:33 +0000 (+0100) Subject: Issue #8035: urllib: Fix a bug where the client could remain stuck after a X-Git-Tag: v3.3.0a1~572^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3c4dcea71267ac7c418a55454d85a4703116c774;p=thirdparty%2FPython%2Fcpython.git Issue #8035: urllib: Fix a bug where the client could remain stuck after a redirection or an error. --- 3c4dcea71267ac7c418a55454d85a4703116c774 diff --cc Misc/NEWS index 286192ce72f8,72b33b99f3bd..85667cc4d319 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -419,17 -97,9 +419,20 @@@ Core and Builtin Library ------- + - Issue #8035: urllib: Fix a bug where the client could remain stuck after a + redirection or an error. + +- Issue #13560: os.strerror() now uses the current locale encoding instead of + UTF-8. + +- Issue #13560: Add PyUnicode_DecodeLocale(), PyUnicode_DecodeLocaleAndSize() + and PyUnicode_EncodeLocale() functions to the C API to decode/encode from/to + the current locale encoding. + +- Issue #8373: The filesystem path of AF_UNIX sockets now uses the filesystem + encoding and the surrogateescape error handler, rather than UTF-8. Patch + by David Watson. + - Issue #10350: Read and save errno before calling a function which might overwrite it. Original patch by Hallvard B Furuseth.