Fix typo: double semicolons.
diff --git a/Objects/intobject.c b/Objects/intobject.c
index 80cdf4b..d1f241d 100644
--- a/Objects/intobject.c
+++ b/Objects/intobject.c
@@ -834,7 +834,7 @@
 	if (tmp == NULL)
 		return NULL;
 	assert(PyInt_Check(tmp));
-	new = type->tp_alloc(type, 0);;
+	new = type->tp_alloc(type, 0);
 	if (new == NULL)
 		return NULL;
 	((PyIntObject *)new)->ob_ival = ((PyIntObject *)tmp)->ob_ival;