diff options
author | Irit Katriel <1055913+iritkatriel@users.noreply.github.com> | 2023-04-05 14:52:38 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-05 14:52:38 (GMT) |
commit | 5e7c468fc4ceb801c30844b794e04a2ac6a35743 (patch) | |
tree | c937975b25ba53bf9ba554e30953b7a99838672e /Lib/test/test_exceptions.py | |
parent | 8f70b16e3397ad32757ddbabd5180cbef0036a4b (diff) | |
download | cpython-5e7c468fc4ceb801c30844b794e04a2ac6a35743.zip cpython-5e7c468fc4ceb801c30844b794e04a2ac6a35743.tar.gz cpython-5e7c468fc4ceb801c30844b794e04a2ac6a35743.tar.bz2 |
gh-89058: remove skip from test_no_hang_on_context_chain_cycle2 (#102903)
Diffstat (limited to 'Lib/test/test_exceptions.py')
-rw-r--r-- | Lib/test/test_exceptions.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_exceptions.py b/Lib/test/test_exceptions.py index 284f26be..74a5884 100644 --- a/Lib/test/test_exceptions.py +++ b/Lib/test/test_exceptions.py @@ -1135,7 +1135,6 @@ class ExceptionTests(unittest.TestCase): self.assertIsInstance(exc.__context__, ValueError) self.assertIs(exc.__context__.__context__, exc.__context__) - @unittest.skip("See issue 44895") def test_no_hang_on_context_chain_cycle2(self): # See issue 25782. Cycle at head of context chain. |