Author: Philip Jenvey <[email protected]>
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)
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to