[pypy-commit] pypy py3k: kill the case about longs, we no longer have them

antocuni noreply at buildbot.pypy.org
Tue Feb 28 23:43:52 CET 2012


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: py3k
Changeset: r53007:f0188f4306f9
Date: 2012-02-28 23:35 +0100
http://bitbucket.org/pypy/pypy/changeset/f0188f4306f9/

Log:	kill the case about longs, we no longer have them

diff --git a/pypy/objspace/test/test_descroperation.py b/pypy/objspace/test/test_descroperation.py
--- a/pypy/objspace/test/test_descroperation.py
+++ b/pypy/objspace/test/test_descroperation.py
@@ -586,10 +586,6 @@
             def __len__(self):
                 return -1
         raises(ValueError, len, X())
-        class Y(object):
-            def __len__(self):
-                return -1L
-        raises(ValueError, len, Y())
 
     def test_len_custom__int__(self):
         class X(object):


More information about the pypy-commit mailing list