PyObject_Del can now be used as a function designator.
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 @@
 	0,					/* tp_init */
 	PyType_GenericAlloc,			/* tp_alloc */
 	array_new,				/* tp_new */
-	_PyObject_Del,				/* tp_free */
+	PyObject_Del,	                 	/* tp_free */
 };
 
 /* No functions in array module. */