Author: Ronan Lamy <ronan.l...@gmail.com>
Branch: unicode-utf8
Changeset: r93333:5ede24e505ee
Date: 2017-12-09 14:42 +0000
http://bitbucket.org/pypy/pypy/changeset/5ede24e505ee/

Log:    oops

diff --git a/pypy/module/struct/formatiterator.py 
b/pypy/module/struct/formatiterator.py
--- a/pypy/module/struct/formatiterator.py
+++ b/pypy/module/struct/formatiterator.py
@@ -192,7 +192,7 @@
         self.result_w.append(w_value)
 
     def append_utf8(self, value):
-        w_ch = self.space.newutf8(rutf8.unichr_as_utf8(r_uint(value), 1))
+        w_ch = self.space.newutf8(rutf8.unichr_as_utf8(r_uint(value)), 1)
         self.result_w.append(w_ch)
 
     def get_pos(self):
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to