Skip to content

Commit 7f06e2a

Browse files
Use public PyObject_GC_UnTrack
Co-authored-by: Kumar Aditya <[email protected]>
1 parent d4d97b3 commit 7f06e2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/genericaliasobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -658,7 +658,7 @@ ga_iternext(gaiterobject *gi) {
658658

659659
static void
660660
ga_iter_dealloc(gaiterobject *gi) {
661-
_PyObject_GC_UNTRACK(gi);
661+
PyObject_GC_UnTrack(gi);
662662
PyObject_GC_Del(gi);
663663
}
664664

0 commit comments

Comments
 (0)