]> granicus.if.org Git - python/commitdiff
Another missed ansification.
authorThomas Wouters <thomas@python.org>
Sun, 23 Jul 2000 22:21:32 +0000 (22:21 +0000)
committerThomas Wouters <thomas@python.org>
Sun, 23 Jul 2000 22:21:32 +0000 (22:21 +0000)
Python/bltinmodule.c

index 2fabf67d45c14c1df955ce3c1f4d7491672a866e..a44c976ffb06e0d810a3398492df7a6a38994727 100644 (file)
@@ -1582,10 +1582,7 @@ equivalent to (x**y) % z, but may be more efficient (e.g. for longs).";
  * large to fit in a signed long.
  */
 static long
-get_len_of_range(lo, hi, step)
-       long lo;
-       long hi;
-       long step;      /* must be > 0 */
+get_len_of_range(long lo, long hi, long step)
 {
        /* -------------------------------------------------------------
        If lo >= hi, the range is empty.