PyObject_Del can now be used as a function designator.
diff --git a/Objects/fileobject.c b/Objects/fileobject.c
index a03796b..54d040d 100644
--- a/Objects/fileobject.c
+++ b/Objects/fileobject.c
@@ -1631,7 +1631,7 @@
 	(initproc)file_init,			/* tp_init */
 	PyType_GenericAlloc,			/* tp_alloc */
 	file_new,				/* tp_new */
-	_PyObject_Del,				/* tp_free */
+	PyObject_Del,                           /* tp_free */
 };
 
 /* Interface for the 'soft space' between print items. */