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 mjpieters
Recipients ezio.melotti, mjpieters, ned.deily, serhiy.storchaka, terry.reedy, vstinner
Date 2015-03-04.15:12:11
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1425481931.47.0.928459740803.issue23583@psf.upfronthosting.co.za>
In-reply-to
Content
Proposed fix, replace line 1352-1353 in PseudoOutputFile.write():

if isinstance(s, unicode):
    s = unicode.__getslice__(s, None, None)

with

if isinstance(s, unicode):
    s = unicode.__getslice__(s, 0, len(s))
History
Date User Action Args
2015-03-04 15:12:11mjpieterssetrecipients: + mjpieters, terry.reedy, vstinner, ned.deily, ezio.melotti, serhiy.storchaka
2015-03-04 15:12:11mjpieterssetmessageid: <1425481931.47.0.928459740803.issue23583@psf.upfronthosting.co.za>
2015-03-04 15:12:11mjpieterslinkissue23583 messages
2015-03-04 15:12:11mjpieterscreate