cleanup iobase.c

casting iobase_finalize to destructor is not needed
This commit is contained in:
Victor Stinner 2016-03-19 10:36:36 +01:00
parent e0b75b7e87
commit 928bff0b26

View file

@ -827,7 +827,7 @@ PyTypeObject PyIOBase_Type = {
0, /* tp_weaklist */
0, /* tp_del */
0, /* tp_version_tag */
(destructor)iobase_finalize, /* tp_finalize */
iobase_finalize, /* tp_finalize */
};