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 andrewmcnamara
Recipients
Date 2007-06-28.11:35:39
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Dialects were made immutable, because they can potentially represent the configuration of a running state machine (the reader), and the dialects are potentially shared.

If you want to change a registered dialect, I suggest you do something like:

   csv.register_dialect('excel', csv.get_dialect('excel'), delimiter='\t')

This changes the dialect for new users, but doesn't disrupt the state of already running readers.
History
Date User Action Args
2007-08-23 14:58:04adminlinkissue1744580 messages
2007-08-23 14:58:04admincreate