[pypy-commit] pypy py3k: the long type has gone

antocuni noreply at buildbot.pypy.org
Mon Apr 16 18:08:01 CEST 2012


Author: Antonio Cuni <anto.cuni at 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)


More information about the pypy-commit mailing list