Author: Antonio Cuni <anto.c...@gmail.com>
Branch: py3k
Changeset: r54435:a00aeda79bbc
Date: 2012-04-16 18:03 +0200
http://bitbucket.org/pypy/pypy/changeset/a00aeda79bbc/

Log:    the long type has gone

diff --git a/pypy/module/array/test/test_array.py 
b/pypy/module/array/test/test_array.py
--- a/pypy/module/array/test/test_array.py
+++ b/pypy/module/array/test/test_array.py
@@ -64,9 +64,9 @@
                            ('h', (-32768, 30535, 32767),  int),
                            ('H', (     0, 56783, 65535),  int),
                            ('i', (-32768, 30535, 32767),  int),
-                           ('I', (     0, 56783, 65535), long),
+                           ('I', (     0, 56783, 65535), int),
                            ('l', (-2 ** 32 // 2, 34, 2 ** 32 // 2 - 1),  int),
-                           ('L', (0, 3523532, 2 ** 32 - 1), long),
+                           ('L', (0, 3523532, 2 ** 32 - 1), int),
                            ):
             a = self.array(tc, ok)
             assert len(a) == len(ok)
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to