]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
make a few things static
authorGuido van Rossum <guido@python.org>
Tue, 17 Jan 1995 16:33:39 +0000 (16:33 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 17 Jan 1995 16:33:39 +0000 (16:33 +0000)
Objects/rangeobject.c

index 7243e1fe824b122a598f03808638c3ba0b443e30..dcb7a19828e96e96021b943bdcc8af434a9f8944 100644 (file)
@@ -113,7 +113,7 @@ range_repr(r)
        return newstringobject(buf);
 }
 
-object *
+static object *
 range_concat(r, obj)
        rangeobject *r;
        object *obj;
@@ -122,7 +122,7 @@ range_concat(r, obj)
        return NULL;
 }
 
-object *
+static object *
 range_repeat(r, n)
        rangeobject *r;
        int n;