From: Thomas Wouters Date: Sun, 23 Jul 2000 22:21:32 +0000 (+0000) Subject: Another missed ansification. X-Git-Tag: v2.0b1~752 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e28c296f0febd56ff082ed07f542e1e6c3b8a2bd;p=python Another missed ansification. --- diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index 2fabf67d45..a44c976ffb 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -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.