From: Berker Peksag Date: Fri, 26 Aug 2016 19:08:51 +0000 (+0300) Subject: Issue #10513: Merge from 3.5 X-Git-Tag: v3.6.0b1~544 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6ed442c48dd7f8d3097e688a36bc027df3271621;p=thirdparty%2FPython%2Fcpython.git Issue #10513: Merge from 3.5 --- 6ed442c48dd7f8d3097e688a36bc027df3271621 diff --cc Misc/NEWS index 6d9ffa3288b8,f9e2d09ebd43..43606f3e2dbe --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -46,14 -29,30 +46,17 @@@ Core and Builtin Library ------- + - Issue #10513: Fix a regression in Connection.commit(). Statements should + not be reset after a commit. + +- Issue #12319: Chunked transfer encoding support added to + http.client.HTTPConnection requests. The + urllib.request.AbstractHTTPHandler class does not enforce a Content-Length + header any more. If a HTTP request has a non-empty body, but no + Content-Length header, and the content length cannot be determined + up front, rather than throwing an error, the library now falls back + to use chunked transfer encoding. + - A new version of typing.py from https://github.com/python/typing: - Collection (only for 3.6) (Issue #27598) - Add FrozenSet to __all__ (upstream #261)