Author: Antonio Cuni <[email protected]>
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
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to