]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-46128: Strip IsolatedAsyncioTestCase frames from reported stacktraces (#30196)
authorAndrew Svetlov <andrew.svetlov@gmail.com>
Wed, 13 Nov 2024 04:24:33 +0000 (05:24 +0100)
committerGitHub <noreply@github.com>
Wed, 13 Nov 2024 04:24:33 +0000 (05:24 +0100)
* Strip IsolatedAsyncioTestCase frames from reported stacktraces

* Update Misc/NEWS.d/next/Library/2021-12-19-10-47-24.bpo-46128.Qv3EK1.rst

Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
---------

Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com>
Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
Lib/unittest/async_case.py
Misc/NEWS.d/next/Library/2021-12-19-10-47-24.bpo-46128.Qv3EK1.rst [new file with mode: 0644]

index bd06eb3207697a74f0113c233385c275b93778ca..6000af1cef0a78c27350f848e366a184bd598f37 100644 (file)
@@ -5,6 +5,7 @@ import warnings
 
 from .case import TestCase
 
+__unittest = True
 
 class IsolatedAsyncioTestCase(TestCase):
     # Names intentionally have a long prefix
diff --git a/Misc/NEWS.d/next/Library/2021-12-19-10-47-24.bpo-46128.Qv3EK1.rst b/Misc/NEWS.d/next/Library/2021-12-19-10-47-24.bpo-46128.Qv3EK1.rst
new file mode 100644 (file)
index 0000000..7d11d20
--- /dev/null
@@ -0,0 +1,2 @@
+Strip :class:`unittest.IsolatedAsyncioTestCase` stack frames from reported
+stacktraces.