Skip to content

Commit 60129b6

Browse files
committed
Fix mistake
1 parent 456a38a commit 60129b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/gc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2126,7 +2126,7 @@ _PyGC_Collect(PyThreadState *tstate, int generation, _PyGC_Reason reason)
21262126
double d = PyTime_AsSecondsDouble(t2 - t1);
21272127
PySys_WriteStderr(
21282128
"gc: done, %zd unreachable, %zd uncollectable, %.4fs elapsed\n",
2129-
stats.collected + stats.collected, stats.uncollectable, d
2129+
stats.collected + stats.uncollectable, stats.uncollectable, d
21302130
);
21312131
}
21322132

0 commit comments

Comments
 (0)