test_exceptions.py passes, except for pickling of course.
diff --git a/Lib/test/test_exceptions.py b/Lib/test/test_exceptions.py
index 9e7d15b..aa9b66d 100644
--- a/Lib/test/test_exceptions.py
+++ b/Lib/test/test_exceptions.py
@@ -98,7 +98,7 @@
         except TypeError: pass
 
         self.raise_catch(ValueError, "ValueError")
-        self.assertRaises(ValueError, chr, 10000)
+        self.assertRaises(ValueError, chr, 1000000)
 
         self.raise_catch(ZeroDivisionError, "ZeroDivisionError")
         try: x = 1/0