summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorThomas Wouters <thomas@python.org>2000-07-23 22:21:32 (GMT)
committerThomas Wouters <thomas@python.org>2000-07-23 22:21:32 (GMT)
commite28c296f0febd56ff082ed07f542e1e6c3b8a2bd (patch)
tree14042cae85ccdde90a43fc99ee9ba88ed09339d6 /Python
parentc307352027ba146150a8f5a56be0ed317fcd4323 (diff)
downloadcpython-e28c296f0febd56ff082ed07f542e1e6c3b8a2bd.zip
cpython-e28c296f0febd56ff082ed07f542e1e6c3b8a2bd.tar.gz
cpython-e28c296f0febd56ff082ed07f542e1e6c3b8a2bd.tar.bz2
Another missed ansification.
Diffstat (limited to 'Python')
-rw-r--r--Python/bltinmodule.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c
index 2fabf67..a44c976 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.