summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
Diffstat (limited to 'Misc')
-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.