Opened 13 years ago

Closed 13 years ago

Last modified 13 years ago

#14777 closed (fixed)

The "Generating CSV" doc should mention Unicode issues.

Reported by: Adam Vandenberg Owned by: nobody
Component: Documentation Version: 1.2
Severity: Keywords:
Cc: Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

The "Using the Python CSV library" section of the "Outputting CSV with Django" doc should speak to Unicode issues w/ Python's csv module, since Django slings unicode objects around. This project ( https://github.com/jdunck/python-unicodecsv ) attempts to be a drop-in replacement, and the docs for the csv module itself as a "UnicodeWriter" section at the bottom.

I'll work up a draft if there is interested.

Attachments (1)

csv-unicode.diff (1.1 KB ) - added by Adam Vandenberg 13 years ago.
Initial patch

Download all attachments as: .zip

Change History (5)

comment:1 by Tim Graham, 13 years ago

Triage Stage: UnreviewedAccepted

I've run into that issue as well, so I think a quick note would be great.

comment:2 by Jannis Leidel, 13 years ago

+1 Couldn't agree more!

by Adam Vandenberg, 13 years ago

Attachment: csv-unicode.diff added

Initial patch

comment:3 by Gabriel Hurley, 13 years ago

Resolution: fixed
Status: newclosed

(In [14749]) Fixed #14777 -- Added docs on working around the Python CSV module's lack of Unicode support. Thanks to adamv for the report and draft patch.

comment:4 by Gabriel Hurley, 13 years ago

(In [14750]) [1.2.X] Fixed #14777 -- Added docs on working around the Python CSV module's lack of Unicode support. Thanks to adamv for the report and draft patch.

Backport of [14749] from trunk.

Note: See TracTickets for help on using tickets.
Back to Top