Author: Philip Jenvey <pjen...@underboss.org>
Branch: py3k
Changeset: r74297:7c10b6d1febb
Date: 2014-10-29 18:19 -0700
http://bitbucket.org/pypy/pypy/changeset/7c10b6d1febb/

Log:    kill long literals

diff --git a/pypy/objspace/std/test/test_floatobject.py 
b/pypy/objspace/std/test/test_floatobject.py
--- a/pypy/objspace/std/test/test_floatobject.py
+++ b/pypy/objspace/std/test/test_floatobject.py
@@ -444,9 +444,6 @@
         assert 5 .__eq__(3.14) is NotImplemented
         assert 3.14 .__eq__(5) is False
 
-        assert 5L .__eq__(3.14) is NotImplemented
-        assert 3.14 .__eq__(5L) is False
-
     def test_from_string(self):
         raises(ValueError, float, "\0")
         raises(ValueError, float, '\uD8F0')
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to