summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-08-24 07:51:36 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-08-24 07:51:36 (GMT)
commit250d0e5f0a5e2782f1e8be16cdf2d3c8b9d853ab (patch)
treec903ea3506dfa9204fb1a0de48b582be3998574d
parent3c0d0baf2badfad7deb346d1043f7d83bb92691f (diff)
downloadcpython-250d0e5f0a5e2782f1e8be16cdf2d3c8b9d853ab.zip
cpython-250d0e5f0a5e2782f1e8be16cdf2d3c8b9d853ab.tar.gz
cpython-250d0e5f0a5e2782f1e8be16cdf2d3c8b9d853ab.tar.bz2
Issue #12319: Move NEWS under beta 1 heading
-rw-r--r--Misc/NEWS16
1 files changed, 8 insertions, 8 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e0cd715..6d9ffa3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -46,6 +46,14 @@ Core and Builtins
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 @@ Library
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.