diff options
author | Guido van Rossum <guido@python.org> | 1995-01-17 16:34:13 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-01-17 16:34:13 +0000 |
commit | 01d89ef0c5cb11779dc40ca7338504bedce60937 (patch) | |
tree | de98468713e9567f2d6b598b8d1d11064e839ed9 /Objects | |
parent | 9a0d68ecfc1690583e073c5b86e72cee7f691a7b (diff) | |
download | cpython-01d89ef0c5cb11779dc40ca7338504bedce60937.tar.gz |
long_scan is no longer used
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/longobject.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Objects/longobject.c b/Objects/longobject.c index ef3f332b2d..b9935b0338 100644 --- a/Objects/longobject.c +++ b/Objects/longobject.c @@ -350,6 +350,7 @@ long_format(aa, base) return (object *)str; } +#if 0 /* Convert a string to a long int object, in a given base. Base zero implies a default depending on the number. External linkage: used in compile.c and stropmodule.c. */ @@ -361,6 +362,7 @@ long_scan(str, base) { return long_escan(str, (char **)NULL, base); } +#endif object * long_escan(str, pend, base) |