Author: Antonio Cuni <[email protected]>
Branch: py3k
Changeset: r57753:046240dc8f86
Date: 2012-10-03 00:39 +0200
http://bitbucket.org/pypy/pypy/changeset/046240dc8f86/
Log: rpython fix
diff --git a/pypy/module/_csv/interp_writer.py
b/pypy/module/_csv/interp_writer.py
--- a/pypy/module/_csv/interp_writer.py
+++ b/pypy/module/_csv/interp_writer.py
@@ -39,7 +39,7 @@
for field_index in range(len(fields_w)):
w_field = fields_w[field_index]
if space.is_w(w_field, space.w_None):
- field = ""
+ field = u""
elif space.isinstance_w(w_field, space.w_float):
field = space.unicode_w(space.repr(w_field))
else:
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit