8000 non-fix edit · python/cpython@ae9e2f5 · GitHub
[go: up one dir, main page]

Skip to content

Commit ae9e2f5

Browse files
authored
non-fix edit
1 parent 6f005f4 commit ae9e2f5

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Modules/_ctypes/_ctypes.c

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4999,14 +4999,13 @@ Simple_traverse(CDataObject *self, visitproc visit, void *arg)
49994999
// FIXME: avoid a crash
50005000
Py_VISIT(self);
50015001
}
5002-
return 0;
5002+
return PyCData_traverse(self, visit, arg);;
50035003
}
50045004

50055005
static int
50065006
Simple_clear(CDataObject *self)
50075007
{
5008-
PyCData_clear(self);
5009-
return 0;
5008+
return PyCData_clear(self);
50105009
}
50115010

50125011
static void

0 commit comments

Comments
 (0)
0