Commit 68068073 authored by Victor Stinner's avatar Victor Stinner

cleanup iobase.c

casting iobase_finalize to destructor is not needed
parent 58bb4c3b
...@@ -827,7 +827,7 @@ PyTypeObject PyIOBase_Type = { ...@@ -827,7 +827,7 @@ PyTypeObject PyIOBase_Type = {
0, /* tp_weaklist */ 0, /* tp_weaklist */
0, /* tp_del */ 0, /* tp_del */
0, /* tp_version_tag */ 0, /* tp_version_tag */
(destructor)iobase_finalize, /* tp_finalize */ iobase_finalize, /* tp_finalize */
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment