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 arigo
Recipients arigo
Date 2012-09-24.13:03:11
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1348491792.39.0.00618601585478.issue16013@psf.upfronthosting.co.za>
In-reply-to
Content
A small bug of cvs.reader():

>>> list(csv.reader(['foo:"'], delimiter=':', quotechar='"'))
[]

Adding strict=True doesn't change anything.  This is caused by the opening quote not followed by anything, which causes the error to be silently ignored and the last line to be dropped.
History
Date User Action Args
2012-09-24 13:03:12arigosetrecipients: + arigo
2012-09-24 13:03:12arigosetmessageid: <1348491792.39.0.00618601585478.issue16013@psf.upfronthosting.co.za>
2012-09-24 13:03:11arigolinkissue16013 messages
2012-09-24 13:03:11arigocreate