diff options
author | Guido van Rossum <guido@dropbox.com> | 2016-06-08 18:33:28 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@dropbox.com> | 2016-06-08 18:33:28 (GMT) |
commit | d03ed8a4d0fc6d736d91c9ee67e0a040245d78ca (patch) | |
tree | b51ee6e8aeaf180f46703ce9ef634168940f4f32 /Misc | |
parent | 8c0e046023a6451f60380b27f2798912249dc39b (diff) | |
parent | fda4d67842a406d2fa285f929ddf890c2393e1c2 (diff) | |
download | cpython-d03ed8a4d0fc6d736d91c9ee67e0a040245d78ca.zip cpython-d03ed8a4d0fc6d736d91c9ee67e0a040245d78ca.tar.gz cpython-d03ed8a4d0fc6d736d91c9ee67e0a040245d78ca.tar.bz2 |
Omnibus news entry for updates to typing.py. (Merge 3.5->3.6)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -27,6 +27,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 |