Skip to content

Commit 8d01b65

Browse files
committed
news and lint
1 parent 795e703 commit 8d01b65

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Fix quadratically increasing garbage collection delays in free-threaded
2+
build.

Python/gc_free_threading.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2213,7 +2213,7 @@ record_deallocation(PyThreadState *tstate)
22132213
int count = _Py_atomic_load_int_relaxed(&gcstate->young.count);
22142214
int new_count;
22152215
do {
2216-
if (count == 0) {
2216+
if (count == 0) {
22172217
break;
22182218
}
22192219
new_count = count + (int)gc->alloc_count;

0 commit comments

Comments
 (0)