Rip out 'long' and 'L'-suffixed integer literals.
(Rough first cut.)
diff --git a/Lib/csv.py b/Lib/csv.py
index d911175..e8c8cef 100644
--- a/Lib/csv.py
+++ b/Lib/csv.py
@@ -369,7 +369,7 @@
for col in columnTypes.keys():
- for thisType in [int, long, float, complex]:
+ for thisType in [int, int, float, complex]:
try:
thisType(row[col])
break
@@ -380,7 +380,7 @@
thisType = len(row[col])
# treat longs as ints
- if thisType == long:
+ if thisType == int:
thisType = int
if thisType != columnTypes[col]: