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 steve.dower
Recipients eryksun, paul.moore, python-dev, steve.dower, tim.golden, zach.ware
Date 2016-09-17.20:54:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1474145655.7.0.879319905498.issue28162@psf.upfronthosting.co.za>
In-reply-to
Content
The fix here was changing "n > 0 && buf[len] == '\x1a'" into "n == 0 || buf[len] == '\x1a'" when returning an empty bytes. Previously we were falling into the conversion code which wasn't happy with n == 0.
History
Date User Action Args
2016-09-17 20:54:15steve.dowersetrecipients: + steve.dower, paul.moore, tim.golden, python-dev, zach.ware, eryksun
2016-09-17 20:54:15steve.dowersetmessageid: <1474145655.7.0.879319905498.issue28162@psf.upfronthosting.co.za>
2016-09-17 20:54:15steve.dowerlinkissue28162 messages
2016-09-17 20:54:15steve.dowercreate