summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorMariatta <Mariatta@users.noreply.github.com>2017-05-03 16:37:50 (GMT)
committerGitHub <noreply@github.com>2017-05-03 16:37:50 (GMT)
commit4b15e45895ca56ac5f7837cacb8cd3ccc26d1f66 (patch)
tree6fc40c854d25476da7931757bf481c6b14a9626b /Misc/NEWS
parent5e9c1101924bacf3ead03124b5c1e48551638360 (diff)
downloadcpython-4b15e45895ca56ac5f7837cacb8cd3ccc26d1f66.zip
cpython-4b15e45895ca56ac5f7837cacb8cd3ccc26d1f66.tar.gz
cpython-4b15e45895ca56ac5f7837cacb8cd3ccc26d1f66.tar.bz2
[3.5] bpo-28556: Routine updates to typing (GH-1366) (#1417)
- Add NoReturn type - Use WrapperDescriptorType (original PR by Jim Fasarakis-Hilliard) - Minor bug-fixes (cherry picked from commit f06e0218ef6007667f5d61184b85a81a0466d3ae)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c7d273c..93bd30f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -49,6 +49,10 @@ Extension Modules
Library
-------
+- bpo-28556: Various updates to typing module: add typing.NoReturn type, use
+ WrapperDescriptorType, minor bug-fixes. Original PRs by
+ Jim Fasarakis-Hilliard and Ivan Levkivskyi.
+
- bpo-30205: Fix getsockname() for unbound AF_UNIX sockets on Linux.
- bpo-30070: Fixed leaks and crashes in errors handling in the parser module.