long_scan is no longer used

This commit is contained in:
Guido van Rossum 1995-01-17 16:34:13 +00:00
parent ce00509702
commit 3535f6e0a1
1 changed files with 2 additions and 0 deletions

View File

@ -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)