[pypy-commit] pypy py3k: kill long literal

pjenvey noreply at buildbot.pypy.org
Tue May 6 00:18:59 CEST 2014


Author: Philip Jenvey <pjenvey at underboss.org>
Branch: py3k
Changeset: r71288:345171b6d983
Date: 2014-05-05 12:10 -0700
http://bitbucket.org/pypy/pypy/changeset/345171b6d983/

Log:	kill long literal

diff --git a/pypy/module/cppyy/test/test_cppyy.py b/pypy/module/cppyy/test/test_cppyy.py
--- a/pypy/module/cppyy/test/test_cppyy.py
+++ b/pypy/module/cppyy/test/test_cppyy.py
@@ -47,8 +47,6 @@
 
         res = t.get_overload("staticAddOneToInt").call(None, 1)
         assert res == 2
-        res = t.get_overload("staticAddOneToInt").call(None, 1L)
-        assert res == 2
         res = t.get_overload("staticAddOneToInt").call(None, 1, 2)
         assert res == 4
         res = t.get_overload("staticAddOneToInt").call(None, -1)


More information about the pypy-commit mailing list