genobject: Remove unnecessary tp_free slots from aiter_wrapper and coro_wrapper
diff --git a/Objects/genobject.c b/Objects/genobject.c
index 0d5d54f..d403598 100644
--- a/Objects/genobject.c
+++ b/Objects/genobject.c
@@ -1031,7 +1031,7 @@
     0,                                          /* tp_init */
     0,                                          /* tp_alloc */
     0,                                          /* tp_new */
-    PyObject_Del,                               /* tp_free */
+    0,                                          /* tp_free */
 };
 
 PyObject *
@@ -1116,7 +1116,7 @@
     0,                                          /* tp_init */
     0,                                          /* tp_alloc */
     0,                                          /* tp_new */
-    PyObject_Del,                               /* tp_free */
+    0,                                          /* tp_free */
 };