From: Serhiy Storchaka Date: Tue, 17 Dec 2013 19:51:40 +0000 (+0200) Subject: Issue #20007: HTTPResponse.read(0) no more prematurely closes connection. X-Git-Tag: v3.4.0b2~187 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cac05e2e900f804a9a2c42ce9ab27c17b93a0811;p=thirdparty%2FPython%2Fcpython.git Issue #20007: HTTPResponse.read(0) no more prematurely closes connection. Original patch by Simon Sapin. --- cac05e2e900f804a9a2c42ce9ab27c17b93a0811 diff --cc Misc/NEWS index e8ab0e7c3589,1b58dea47f50..458e43ef5899 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -44,19 -29,9 +44,22 @@@ Core and Builtin Library ------- + - Issue #20007: HTTPResponse.read(0) no more prematurely closes connection. + Original patch by Simon Sapin. + +- Issue #19946: multiprocessing now uses runpy to initialize __main__ in + child processes when necessary, allowing it to correctly handle scripts + without suffixes and submodules that use explicit relative imports or + otherwise rely on parent modules being correctly imported prior to + execution. + +- Issue #19921: When Path.mkdir() is called with parents=True, any missing + parent is created with the default permissions, ignoring the mode argument + (mimicking the POSIX "mkdir -p" command). + +- Issue #19887: Improve the Path.resolve() algorithm to support certain + symlink chains. + - Issue #19912: Fixed numerous bugs in ntpath.splitunc(). - Issue #19911: ntpath.splitdrive() now correctly processes the 'İ' character