commit | cfd829eefca1c5b971a27306a09dbb6704d96e8d | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Thu Jul 05 14:44:41 2001 +0000 |
committer | Guido van Rossum <guido@python.org> | Thu Jul 05 14:44:41 2001 +0000 |
tree | 5b6a666de56c40f1710f223c2d06062e69040063 | |
parent | 3f56166b1aff15136960dfc8ad90f571e14be01a [diff] |
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[] =