mirror of https://github.com/python/cpython
gh-95707: Fix function signature (GH-95995)
This commit is contained in:
parent
3ef3c6306d
commit
8621e6d43a
|
@ -768,10 +768,11 @@ heapmanaged_traverse(HeapCTypeObject *self, visitproc visit, void *arg)
|
|||
return _PyObject_VisitManagedDict((PyObject *)self, visit, arg);
|
||||
}
|
||||
|
||||
static void
|
||||
static int
|
||||
heapmanaged_clear(HeapCTypeObject *self)
|
||||
{
|
||||
_PyObject_ClearManagedDict((PyObject *)self);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in New Issue