[Python-checkins] cpython: Issue #12319: Move NEWS under beta 1 heading

martin.panter python-checkins at python.org
Wed Aug 24 03:52:25 EDT 2016


https://hg.python.org/cpython/rev/b004da19b869
changeset:   102887:b004da19b869
user:        Martin Panter <vadmium+py at gmail.com>
date:        Wed Aug 24 07:51:36 2016 +0000
summary:
  Issue #12319: Move NEWS under beta 1 heading

files:
  Misc/NEWS |  16 ++++++++--------
  1 files changed, 8 insertions(+), 8 deletions(-)


diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -46,6 +46,14 @@
 Library
 -------
 
+- 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)
@@ -160,14 +168,6 @@
   then further affects other traceback display operations in the module). Patch
   by Emanuel Barry.
 
-- 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.
-
 - Issue #27664: Add to concurrent.futures.thread.ThreadPoolExecutor()
   the ability to specify a thread name prefix.
 

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list