Issue #7435:  Remove duplicate int/long tests, and other
references to long in py3k.  Patch provided by flox.
diff --git a/Lib/test/test_int.py b/Lib/test/test_int.py
index d56e1f0..ab463a0 100644
--- a/Lib/test/test_int.py
+++ b/Lib/test/test_int.py
@@ -34,6 +34,7 @@
         self.assertEqual(int(-3.9), -3)
         self.assertEqual(int(3.5), 3)
         self.assertEqual(int(-3.5), -3)
+        self.assertEqual(int("-3"), -3)
         # Different base:
         self.assertEqual(int("10",16), 16)
         # Test conversion from strings and various anomalies