summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2016-06-08 11:30:48 -0700
committerGuido van Rossum <guido@python.org>2016-06-08 11:30:48 -0700
commit67178c64e0e544aac96bf44ac13812fea7b32157 (patch)
treea94befa8e71d3947009b3e2d8a54d9eafe9c1a99
parentc76772812334961fca16856b8b184554514a23f1 (diff)
downloadcpython-67178c64e0e544aac96bf44ac13812fea7b32157.tar.gz
Omnibus news entry for updates to typing.py.
-rw-r--r--Misc/NEWS8
1 files changed, 8 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9cba2fe2cd..1e5f7d328e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -131,6 +131,14 @@ Core and Builtins
Library
-------
+- A new version of typing.py provides several new classes and
+ features: @overload outside stubs, Reversible, DefaultDict, Text,
+ ContextManager, Type[], NewType(), TYPE_CHECKING, and numerous bug
+ fixes (note that some of the new features are not yet implemented in
+ mypy or other static analyzers). Also classes for PEP 492
+ (Awaitable, AsyncIterable, AsyncIterator) have been added (in fact
+ they made it into 3.5.1 but were never mentioned).
+
- Issue #25738: Stop http.server.BaseHTTPRequestHandler.send_error() from
sending a message body for 205 Reset Content. Also, don't send Content
header fields in responses that don't have a body. Patch by Susumu