[pypy-commit] pypy py3k: kill long literals

pjenvey noreply at buildbot.pypy.org
Thu Oct 30 02:20:23 CET 2014


Author: Philip Jenvey <pjenvey at 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')


More information about the pypy-commit mailing list