diff options
author | Ivan Levkivskyi <levkivskyi@gmail.com> | 2017-06-10 19:57:56 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2017-06-10 19:57:56 (GMT) |
commit | 29fda8db16e0edab92841277fa223f844f5a92cc (patch) | |
tree | aac6c5428f6f02488f2e9e8099b9c200496c1018 /Misc/NEWS | |
parent | ca816153445cba3baec15f7e890c71abfe495340 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |