From 28df36d33f4b53ddec2597146f3d273a397fa17d Mon Sep 17 00:00:00 2001 From: Padraic Fanning Date: Sat, 1 May 2021 13:17:31 -0400 Subject: [PATCH] Mark stack overflow on Windows --- Lib/test/test_richcmp.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Lib/test/test_richcmp.py b/Lib/test/test_richcmp.py index 27ef92c3e..2291fe678 100644 --- a/Lib/test/test_richcmp.py +++ b/Lib/test/test_richcmp.py @@ -220,6 +220,9 @@ class MiscTest(unittest.TestCase): for func in (do, operator.not_): self.assertRaises(Exc, func, Bad()) + # TODO: RUSTPYTHON + import sys + @unittest.skipIf(sys.platform == "win32", "TODO: RUSTPYTHON, thread 'main' has overflowed its stack") @support.no_tracing def test_recursion(self): # Check that comparison for recursive objects fails gracefully