From 12cdb9887edc79b2938a26c6ddcea3ba8f563e09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E7=9A=93=E6=99=9F?= <2067144018@qq.com> Date: Sun, 23 Nov 2025 16:28:29 +0800 Subject: [PATCH] [no ci] fix --- tests/71_gc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/71_gc.py b/tests/71_gc.py index da3ba71d..ee18b6eb 100644 --- a/tests/71_gc.py +++ b/tests/71_gc.py @@ -5,7 +5,7 @@ setup_gc_debug_callback(print) gc.collect() def create_garbage(): - a = [(1,2) for i in range(10000)] + a = [(1,2) for i in range(20000)] return a create_garbage()