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 krypten, r.david.murray, rhettinger, samwyse, skip.montanaro
Date 2014-12-15.19:52:44
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1418673164.16.0.485101059504.issue23041@psf.upfronthosting.co.za>
In-reply-to
Content
If I understand correctly, your software needs to distinguish between

# wrote ["foo", "", 42, None] with quote_all in effect
"foo","","42",""

and

# wrote ["foo", None, 42, ""] with quote_nonnull in effect
"foo",,"42",""

so you in effect want to transmit some type information through a CSV file?
History
Date User Action Args
2014-12-15 19:52:44skip.montanarosetrecipients: + skip.montanaro, rhettinger, samwyse, r.david.murray, krypten
2014-12-15 19:52:44skip.montanarosetmessageid: <1418673164.16.0.485101059504.issue23041@psf.upfronthosting.co.za>
2014-12-15 19:52:44skip.montanarolinkissue23041 messages
2014-12-15 19:52:44skip.montanarocreate