From 17e60754f6f4e44fccd43a06c964b4ebab54086d Mon Sep 17 00:00:00 2001 From: ShaharNaveh <50263213+ShaharNaveh@users.noreply.github.com> Date: Fri, 25 Jul 2025 15:47:48 +0200 Subject: [PATCH] Fix patching of support --- Lib/test/support/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Lib/test/support/__init__.py b/Lib/test/support/__init__.py index 09813399e..b952080d6 100644 --- a/Lib/test/support/__init__.py +++ b/Lib/test/support/__init__.py @@ -1898,7 +1898,9 @@ def _check_tracemalloc(): def check_free_after_iterating(test, iter, cls, args=()): - return # TODO: RUSTPYTHON; GC is not supported yet + # TODO: RUSTPYTHON; GC is not supported yet + test.assertTrue(False) + return done = False def wrapper():