[pypy-svn] r5600 - pypy/trunk/src/pypy/objspace/std/test

mwh at codespeak.net mwh at codespeak.net
Wed Jul 21 13:10:03 CEST 2004


Author: mwh
Date: Wed Jul 21 13:10:03 2004
New Revision: 5600

Modified:
   pypy/trunk/src/pypy/objspace/std/test/test_intobject.py
Log:
test int("something big")


Modified: pypy/trunk/src/pypy/objspace/std/test/test_intobject.py
==============================================================================
--- pypy/trunk/src/pypy/objspace/std/test/test_intobject.py	(original)
+++ pypy/trunk/src/pypy/objspace/std/test/test_intobject.py	Wed Jul 21 13:10:03 2004
@@ -297,6 +297,7 @@
 
     def test_int_string(self):
         self.assertEquals(42, int("42"))
+        self.assertEquals(10000000000, int("10000000000"))
 
     def test_int_float(self):
         self.assertEquals(4, int(4.2))



More information about the Pypy-commit mailing list