Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6063dc8 commit 67b1e05Copy full SHA for 67b1e05
Python/gc.c
@@ -456,7 +456,6 @@ validate_spaces(GCState *gcstate)
456
static void
457
validate_consistent_old_space(PyGC_Head *head)
458
{
459
- PyGC_Head *prev = head;
460
PyGC_Head *gc = GC_NEXT(head);
461
if (gc == head) {
462
return;
@@ -466,10 +465,8 @@ validate_consistent_old_space(PyGC_Head *head)
466
465
PyGC_Head *truenext = GC_NEXT(gc);
467
assert(truenext != NULL);
468
assert(gc_old_space(gc) == old_space);
469
- prev = gc;
470
gc = truenext;
471
}
472
- assert(prev == GC_PREV(head));
473
474
475
0 commit comments