Squashed new compiler wngs about trying to compare pointers to
functions with different signatures.
diff --git a/Objects/listobject.c b/Objects/listobject.c
index ae2b549..49d977e 100644
--- a/Objects/listobject.c
+++ b/Objects/listobject.c
@@ -2375,7 +2375,7 @@
 		PyErr_BadInternalCall();
 		return NULL;
 	}
-	if (seq->ob_type->tp_as_sequence->sq_item != list_item)
+	if (seq->ob_type->tp_as_sequence->sq_item != (intargfunc)list_item)
 		return PySeqIter_New(seq);
 	it = PyObject_GC_New(listiterobject, &PyListIter_Type);
 	if (it == NULL)