Author: Antonio Cuni <anto.c...@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):
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to