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 Mario.Fasold, amaury.forgeotdarc, andrewmcnamara, eric.araujo, iain_haslam, orsenthil, pitrou, rhettinger, skip.montanaro
Date 2010-02-04.04:05:37
SpamBayes Score 4.405676e-06
Marked as misclassified No
Message-id <1265256338.72.0.612838631507.issue1225769@psf.upfronthosting.co.za>
In-reply-to
Content
Note that there is one case that cannot easily be addressed via pre-processing: where the comment character coincidently appears at the start of a line within a multi-line quoted field. For example:

# This is a comment
1, 2, "This is field^M
#3"

What this should produce is debatable, but it would be hard to make it produce:

  ["1", "2", "This is field^M#3"]

without implementing it within the parser.
History
Date User Action Args
2010-02-04 04:05:38andrewmcnamarasetrecipients: + andrewmcnamara, skip.montanaro, rhettinger, amaury.forgeotdarc, orsenthil, pitrou, iain_haslam, eric.araujo, Mario.Fasold
2010-02-04 04:05:38andrewmcnamarasetmessageid: <1265256338.72.0.612838631507.issue1225769@psf.upfronthosting.co.za>
2010-02-04 04:05:37andrewmcnamaralinkissue1225769 messages
2010-02-04 04:05:37andrewmcnamaracreate