summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorIvan Levkivskyi <levkivskyi@gmail.com>2017-06-10 19:57:56 (GMT)
committerGuido van Rossum <guido@python.org>2017-06-10 19:57:56 (GMT)
commit29fda8db16e0edab92841277fa223f844f5a92cc (patch)
treeaac6c5428f6f02488f2e9e8099b9c200496c1018 /Misc/NEWS
parentca816153445cba3baec15f7e890c71abfe495340 (diff)
downloadcpython-29fda8db16e0edab92841277fa223f844f5a92cc.zip
cpython-29fda8db16e0edab92841277fa223f844f5a92cc.tar.gz
cpython-29fda8db16e0edab92841277fa223f844f5a92cc.tar.bz2
bpo-28556: Updates to typing module (#2076)
This PR contains two updates to typing module: - Support ContextManager on all versions (original PR by Jelle Zijlstra). - Add generic AsyncContextManager.
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 185ec0e..20cea47 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -354,6 +354,10 @@ Library
non-blocking mode if it succeeded to aquire the lock but the acquire took
longer than the timeout.
+- bpo-28556: Updates to typing module: Add generic AsyncContextManager, add
+ support for ContextManager on all versions. Original PRs by Jelle Zijlstra
+ and Ivan Levkivskyi
+
- bpo-30605: re.compile() no longer raises a BytesWarning when compiling a
bytes instance with misplaced inline modifier. Patch by Roy Williams.