Author: Benjamin Peterson <benja...@python.org>
Branch: py3k
Changeset: r53527:fb0800dca9ff
Date: 2012-03-13 22:34 -0500
http://bitbucket.org/pypy/pypy/changeset/fb0800dca9ff/

Log:    whack into submission

diff --git a/pypy/interpreter/test/test_compiler.py 
b/pypy/interpreter/test/test_compiler.py
--- a/pypy/interpreter/test/test_compiler.py
+++ b/pypy/interpreter/test/test_compiler.py
@@ -789,7 +789,7 @@
 
     def test_tuple_constants(self):
         ns = {}
-        exec "x = (1, 0); y = (1L, 0L)" in ns
+        exec "x = (1, 0); y = (1, 0)" in ns
         assert isinstance(ns["x"][0], int)
         assert isinstance(ns["y"][0], int)
 
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to