Complete the xrange-simplification checkins: call PyRange_New() with
fewer arguments.
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c
index 11d6f4c..d23bbf3 100644
--- a/Python/bltinmodule.c
+++ b/Python/bltinmodule.c
@@ -1763,7 +1763,7 @@
 				"xrange() result has too many items");
 		return NULL;
 	}
-	return PyRange_New(ilow, n, istep, 1);
+	return PyRange_New(ilow, n, istep);
 }
 
 static char xrange_doc[] =