diff options
author | Neil Schemenauer <nascheme@enme.ucalgary.ca> | 2002-04-12 02:44:10 (GMT) |
---|---|---|
committer | Neil Schemenauer <nascheme@enme.ucalgary.ca> | 2002-04-12 02:44:10 (GMT) |
commit | aa769ae468c7b857226ebe5b073b4c787a60445a (patch) | |
tree | fa99e9418239aa8bcb28225036ddce4e9ed4c21c /Modules/arraymodule.c | |
parent | 6189b89cc55969c4252a5233ecd8e815baf8d421 (diff) | |
download | cpython-aa769ae468c7b857226ebe5b073b4c787a60445a.zip cpython-aa769ae468c7b857226ebe5b073b4c787a60445a.tar.gz cpython-aa769ae468c7b857226ebe5b073b4c787a60445a.tar.bz2 |
PyObject_Del can now be used as a function designator.
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. */ |