diff options
Diffstat (limited to 'Modules/arraymodule.c')
-rw-r--r-- | Modules/arraymodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/arraymodule.c b/Modules/arraymodule.c index 46de178..1aa76dc 100644 --- a/Modules/arraymodule.c +++ b/Modules/arraymodule.c @@ -1719,7 +1719,7 @@ statichere PyTypeObject Arraytype = { 0, /* tp_init */ PyType_GenericAlloc, /* tp_alloc */ array_new, /* tp_new */ - _PyObject_Del, /* tp_free */ + PyObject_Del, /* tp_free */ }; /* No functions in array module. */ |