[pypy-commit] pypy py3k: whack into submission

gutworth noreply at buildbot.pypy.org
Wed Mar 14 04:35:24 CET 2012


Author: Benjamin Peterson <benjamin at 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)
 


More information about the pypy-commit mailing list