Commit 5f9d0cfc authored by Yury Selivanov's avatar Yury Selivanov

genobject: Remove unnecessary tp_free slots from aiter_wrapper and coro_wrapper

parent 92f654da
...@@ -1031,7 +1031,7 @@ PyTypeObject _PyCoroWrapper_Type = { ...@@ -1031,7 +1031,7 @@ PyTypeObject _PyCoroWrapper_Type = {
0, /* tp_init */ 0, /* tp_init */
0, /* tp_alloc */ 0, /* tp_alloc */
0, /* tp_new */ 0, /* tp_new */
PyObject_Del, /* tp_free */ 0, /* tp_free */
}; };
PyObject * PyObject *
...@@ -1116,7 +1116,7 @@ PyTypeObject _PyAIterWrapper_Type = { ...@@ -1116,7 +1116,7 @@ PyTypeObject _PyAIterWrapper_Type = {
0, /* tp_init */ 0, /* tp_init */
0, /* tp_alloc */ 0, /* tp_alloc */
0, /* tp_new */ 0, /* tp_new */
PyObject_Del, /* tp_free */ 0, /* tp_free */
}; };
......
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