[pypy-commit] pypy py3k: fix syntax

antocuni noreply at buildbot.pypy.org
Mon Apr 16 18:08:00 CEST 2012


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: py3k
Changeset: r54434:abe868f1ea64
Date: 2012-04-16 17:33 +0200
http://bitbucket.org/pypy/pypy/changeset/abe868f1ea64/

Log:	fix syntax

diff --git a/pypy/module/array/test/test_array.py b/pypy/module/array/test/test_array.py
--- a/pypy/module/array/test/test_array.py
+++ b/pypy/module/array/test/test_array.py
@@ -30,7 +30,7 @@
 
         a = self.array('u')
         raises(TypeError, a.append, 7)
-        raises(TypeError, a.append, u'hi')
+        raises(TypeError, a.append, 'hi')
         a.append('h')
         assert a[0] == 'h'
         assert type(a[0]) is str


More information about the pypy-commit mailing list