diff options
author | Guido van Rossum <guido@python.org> | 1995-01-17 16:33:39 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-01-17 16:33:39 (GMT) |
commit | ce00509702551af0af8002eaa294a75906e384e5 (patch) | |
tree | b5164d527bf2cfe6d6a0cf490bb48d22e89221ea /Objects/rangeobject.c | |
parent | 4d3468deab2a33a41c97981068dbc05d9f9df7f5 (diff) | |
download | cpython-ce00509702551af0af8002eaa294a75906e384e5.zip cpython-ce00509702551af0af8002eaa294a75906e384e5.tar.gz cpython-ce00509702551af0af8002eaa294a75906e384e5.tar.bz2 |
make a few things static
Diffstat (limited to 'Objects/rangeobject.c')
-rw-r--r-- | Objects/rangeobject.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/rangeobject.c b/Objects/rangeobject.c index 7243e1f..dcb7a19 100644 --- a/Objects/rangeobject.c +++ b/Objects/rangeobject.c @@ -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; |