summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/Library/2019-05-23-17-37-22.bpo-32528.sGnkcl.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Misc/NEWS.d/next/Library/2019-05-23-17-37-22.bpo-32528.sGnkcl.rst')
-rw-r--r--Misc/NEWS.d/next/Library/2019-05-23-17-37-22.bpo-32528.sGnkcl.rst8
1 files changed, 0 insertions, 8 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-05-23-17-37-22.bpo-32528.sGnkcl.rst b/Misc/NEWS.d/next/Library/2019-05-23-17-37-22.bpo-32528.sGnkcl.rst
deleted file mode 100644
index 375f426..0000000
--- a/Misc/NEWS.d/next/Library/2019-05-23-17-37-22.bpo-32528.sGnkcl.rst
+++ /dev/null
@@ -1,8 +0,0 @@
-Make asyncio.CancelledError a BaseException.
-
-This will address the common mistake many asyncio users make: an "except
-Exception" clause breaking Tasks cancellation.
-
-In addition to this change, we stop inheriting asyncio.TimeoutError and
-asyncio.InvalidStateError from their concurrent.futures.* counterparts.
-There's no point for these exceptions to share the inheritance chain.