Rip out 'long' and 'L'-suffixed integer literals.
(Rough first cut.)
diff --git a/Lib/py_compile.py b/Lib/py_compile.py
index 23c5d18..8f44982 100644
--- a/Lib/py_compile.py
+++ b/Lib/py_compile.py
@@ -114,9 +114,9 @@
"""
f = open(file, 'U')
try:
- timestamp = long(os.fstat(f.fileno()).st_mtime)
+ timestamp = int(os.fstat(f.fileno()).st_mtime)
except AttributeError:
- timestamp = long(os.stat(file).st_mtime)
+ timestamp = int(os.stat(file).st_mtime)
codestring = f.read()
f.close()
if codestring and codestring[-1] != '\n':