8000 GH-126491: Increase the threshold for the GC fast cycle test. by freakboy3742 · Pull Request #126984 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

GH-126491: Increase the threshold for the GC fast cycle test. #126984

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Increase threshold to 27k.
  • Loading branch information
freakboy3742 committed Nov 18, 2024
commit 9d5a064dc68e88113cf5cb1ee959719fc5d90bfb
2 changes: 1 addition & 1 deletion Lib/test/test_gc.py
Original file line number Diff line number Diff line change
Expand Up @@ -1172,7 +1172,7 @@ def make_ll(depth):
olds.append(newhead)
if len(olds) == 20:
new_objects = _testinternalcapi.get_heap_size() - initial_heap_size
self.assertLess(new_objects, 26_000)
self.assertLess(new_objects, 27_000)
del olds[:]
if not enabled:
gc.disable()
Expand Down
Loading
0