diff options
author | Guido van Rossum <guido@python.org> | 2016-06-08 18:30:48 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2016-06-08 18:30:48 (GMT) |
commit | fda4d67842a406d2fa285f929ddf890c2393e1c2 (patch) | |
tree | 9bb68c6fb16e9fe184007dbbe46e159080ff6c2b /Misc | |
parent | 91185fe0284a04162e0b3425b53be49bdbfad67d (diff) | |
download | cpython-fda4d67842a406d2fa285f929ddf890c2393e1c2.zip cpython-fda4d67842a406d2fa285f929ddf890c2393e1c2.tar.gz cpython-fda4d67842a406d2fa285f929ddf890c2393e1c2.tar.bz2 |
Omnibus news entry for updates to typing.py.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -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 |