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 mjohnson
Recipients kalaxy, lukasz.langa, maciej.szulik, mjohnson, serhiy.storchaka
Date 2013-03-20.01:43:56
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1363743837.15.0.659063657414.issue15927@psf.upfronthosting.co.za>
In-reply-to
Content
On input, the reader sees a line like 

    ['one\\\n','element']

from the file iterator and successfully escapes the newline character, but still interprets the end of the string as the end of a record.  I've attached a patch that modifies this behavior, so that encountering the end of a string immediately after an escaped \r or \n is does not begin a new record.
History
Date User Action Args
2013-03-20 01:43:57mjohnsonsetrecipients: + mjohnson, lukasz.langa, serhiy.storchaka, maciej.szulik, kalaxy
2013-03-20 01:43:57mjohnsonsetmessageid: <1363743837.15.0.659063657414.issue15927@psf.upfronthosting.co.za>
2013-03-20 01:43:57mjohnsonlinkissue15927 messages
2013-03-20 01:43:56mjohnsoncreate