long_scan is no longer used
diff --git a/Objects/longobject.c b/Objects/longobject.c
index ef3f332..b9935b0 100644
--- a/Objects/longobject.c
+++ b/Objects/longobject.c
@@ -350,6 +350,7 @@
 	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 @@
 {
 	return long_escan(str, (char **)NULL, base);
 }
+#endif
 
 object *
 long_escan(str, pend, base)