Author: Antonio Cuni <[email protected]>
Branch: py3k
Changeset: r53861:fd7de37d755c
Date: 2012-03-21 12:14 +0100
http://bitbucket.org/pypy/pypy/changeset/fd7de37d755c/

Log:    kill longs

diff --git a/pypy/objspace/std/test/test_obj.py 
b/pypy/objspace/std/test/test_obj.py
--- a/pypy/objspace/std/test/test_obj.py
+++ b/pypy/objspace/std/test/test_obj.py
@@ -114,14 +114,12 @@
         x = 1000000
         assert x + 1 is int(str(x + 1))
         assert 1 is not 1.0
-        assert 1 is not 1l
-        assert 1l is not 1.0
         assert 1.1 is 1.1
         assert 0.0 is not -0.0
         for x in range(10):
             assert x + 0.1 is x + 0.1
         for x in range(10):
-            assert x + 1L is x + 1L
+            assert x + 1 is x + 1
         for x in range(10):
             assert x+1j is x+1j
             assert 1+x*1j is 1+x*1j
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to