[pypy-commit] pypy py3k: fix syntax

antocuni noreply at buildbot.pypy.org
Tue Feb 28 18:44:48 CET 2012


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: py3k
Changeset: r52997:1d15b6375c8f
Date: 2012-02-28 18:44 +0100
http://bitbucket.org/pypy/pypy/changeset/1d15b6375c8f/

Log:	fix syntax

diff --git a/pypy/module/marshal/test/test_marshal.py b/pypy/module/marshal/test/test_marshal.py
--- a/pypy/module/marshal/test/test_marshal.py
+++ b/pypy/module/marshal/test/test_marshal.py
@@ -189,7 +189,7 @@
 
     def test_smalllong(self):
         import __pypy__
-        x = -123456789012345L
+        x = -123456789012345
         assert 'SmallLong' in __pypy__.internal_repr(x)
         y = self.marshal_check(x)
         assert y == x


More information about the pypy-commit mailing list