Author: Manuel Jacob
Branch: py3k
Changeset: r61203:2ced77b5acae
Date: 2013-02-13 11:59 +0100
http://bitbucket.org/pypy/pypy/changeset/2ced77b5acae/
Log: Fix translation.
diff --git a/pypy/module/array/interp_array.py
b/pypy/module/array/interp_array.py
--- a/pypy/module/array/interp_array.py
+++ b/pypy/module/array/interp_array.py
@@ -741,7 +741,7 @@
return space.wrap("array('%s')" % self.typecode)
elif self.typecode == "u":
r = space.repr(array_tounicode__Array(space, self))
- s = u"array('%s', %s)" % (self.typecode, space.unicode_w(r))
+ s = u"array('u', %s)" % space.unicode_w(r)
return space.wrap(s)
else:
r = space.repr(array_tolist__Array(space, self))
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit