]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.13] gh-120065: Increase `collect_in_thread` period to 5 ms. (GH-120068) (#120110)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 5 Jun 2024 13:46:17 +0000 (15:46 +0200)
committerGitHub <noreply@github.com>
Wed, 5 Jun 2024 13:46:17 +0000 (13:46 +0000)
This matches the default GIL switch interval. It greatly speeds up the
free-threaded build: previously, it spent nearly all its time in
`gc.collect()`.
(cherry picked from commit 4bba1c9e6cfeaf69302b501a4306668613db4b28)

Co-authored-by: Sam Gross <colesbury@gmail.com>
Lib/test/test_weakref.py

index 16da24d7805b566c09f6eb24d5d62d4bbfb3f324..ef2fe92cc219b639073878cccdf7756d93a78b9a 100644 (file)
@@ -82,7 +82,7 @@ class TestBase(unittest.TestCase):
 
 
 @contextlib.contextmanager
-def collect_in_thread(period=0.0001):
+def collect_in_thread(period=0.005):
     """
     Ensure GC collections happen in a different thread, at a high frequency.
     """