Rip out 'long' and 'L'-suffixed integer literals.
(Rough first cut.)
diff --git a/Lib/types.py b/Lib/types.py
index 5a89ad1..cc0c1d3 100644
--- a/Lib/types.py
+++ b/Lib/types.py
@@ -14,7 +14,7 @@
 ObjectType = object
 
 IntType = int
-LongType = long
+LongType = int
 FloatType = float
 BooleanType = bool
 try: