diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-08-16 09:01:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-16 09:01:14 (GMT) |
commit | 1960409a6dcbd1e3527f02b523bd27df9086dd77 (patch) | |
tree | 0c65c4002c116f0465ad1da6587b221e7411a3fa /Lib | |
parent | b6a6d99a0ba3796a9d7d4fe8612b640f90e6d7f9 (diff) | |
download | cpython-1960409a6dcbd1e3527f02b523bd27df9086dd77.zip cpython-1960409a6dcbd1e3527f02b523bd27df9086dd77.tar.gz cpython-1960409a6dcbd1e3527f02b523bd27df9086dd77.tar.bz2 |
bpo-44895: skip test_no_hang_on_context_chain_cycle2 until the refleak is fixed (GH-27761)
(cherry picked from commit 62bc716fde20fcb7b47416c7959be9e66df93212)
Co-authored-by: Irit Katriel <1055913+iritkatriel@users.noreply.github.com>
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_exceptions.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Lib/test/test_exceptions.py b/Lib/test/test_exceptions.py index 2e4ec9d..520deb3 100644 --- a/Lib/test/test_exceptions.py +++ b/Lib/test/test_exceptions.py @@ -1012,11 +1012,9 @@ 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. - while gc.collect(): - # Remove this once issue 44895 is resolved - pass class A(Exception): pass |