mirror of https://github.com/python/cpython
make a few things static
This commit is contained in:
parent
4d3468deab
commit
ce00509702
|
@ -113,7 +113,7 @@ range_repr(r)
|
||||||
return newstringobject(buf);
|
return newstringobject(buf);
|
||||||
}
|
}
|
||||||
|
|
||||||
object *
|
static object *
|
||||||
range_concat(r, obj)
|
range_concat(r, obj)
|
||||||
rangeobject *r;
|
rangeobject *r;
|
||||||
object *obj;
|
object *obj;
|
||||||
|
@ -122,7 +122,7 @@ range_concat(r, obj)
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
object *
|
static object *
|
||||||
range_repeat(r, n)
|
range_repeat(r, n)
|
||||||
rangeobject *r;
|
rangeobject *r;
|
||||||
int n;
|
int n;
|
||||||
|
|
Loading…
Reference in New Issue