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 berker.peksag, erdnaxeli, krypten, msetina, r.david.murray, rhettinger, samwyse, serhiy.storchaka, skip.montanaro, tegdev, yoonghm
Date 2021-11-09.12:06:46
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1636459606.38.0.723768319046.issue23041@roundup.psfhosted.org>
In-reply-to
Content
Further question... All the discussion has been on the writer side of the csv module. Is there any reason that using QUOTE_STRINGS or QUOTE_NOTNULL should have an effect when reading? For example, should this line on input

"",,1,'a'

produce this list

["", None, "1", "a"]

with QUOTE_NOTNULL in effect, and

["", "", 1, "a"]

or

["", None, 1, "a"]

with QUOTE_STRINGS in effect?
History
Date User Action Args
2021-11-09 12:06:46skip.montanarosetrecipients: + skip.montanaro, rhettinger, samwyse, r.david.murray, berker.peksag, serhiy.storchaka, krypten, yoonghm, tegdev, erdnaxeli, msetina
2021-11-09 12:06:46skip.montanarosetmessageid: <1636459606.38.0.723768319046.issue23041@roundup.psfhosted.org>
2021-11-09 12:06:46skip.montanarolinkissue23041 messages
2021-11-09 12:06:46skip.montanarocreate