This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author skip.montanaro
Recipients
Date 2006-08-02.13:28:45
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=44345

Vincent,

A simple workaround would be to define a fully quoting dialect:

class quoted_excel(csv.excel):
  quoting=csv.QUOTE_NONNUMERIC     # or QUOTE_ALL

That would cause your generated CSV files to start with a
quote character, e.g.:

    "ID","FOO"
    1,"bar"
    2,"bAz"

Try that and see if it makes Excel 2003 happy.

Skip
History
Date User Action Args
2007-08-23 14:41:49adminlinkissue1532483 messages
2007-08-23 14:41:49admincreate