mirror of
https://github.com/python/cpython.git
synced 2025-07-23 11:15:24 +00:00
bpo-36389: Cleanup gc.set_threshold() (GH-12844)
Don't assign generations[2].threshold to generations[2].threshold: useless operation.
This commit is contained in:
parent
aba7d662ab
commit
0810fa7988
1 changed files with 2 additions and 2 deletions
|
@ -1374,7 +1374,7 @@ gc_set_thresh(PyObject *self, PyObject *args)
|
|||
&_PyRuntime.gc.generations[1].threshold,
|
||||
&_PyRuntime.gc.generations[2].threshold))
|
||||
return NULL;
|
||||
for (i = 2; i < NUM_GENERATIONS; i++) {
|
||||
for (i = 3; i < NUM_GENERATIONS; i++) {
|
||||
/* generations higher than 2 get the same threshold */
|
||||
_PyRuntime.gc.generations[i].threshold = _PyRuntime.gc.generations[2].threshold;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue