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 serhiy.storchaka
Recipients ezio.melotti, mjpieters, ned.deily, serhiy.storchaka, terry.reedy, vstinner
Date 2015-03-04.15:29:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1425482944.6.0.872418849634.issue23583@psf.upfronthosting.co.za>
In-reply-to
Content
I can propose two ways to fix this:

    s = unicode.__getslice__(s, 0, unicode.__len__(s))

and

    s = unicode.__getitem__(s, slice(None))
History
Date User Action Args
2015-03-04 15:29:04serhiy.storchakasetrecipients: + serhiy.storchaka, terry.reedy, mjpieters, vstinner, ned.deily, ezio.melotti
2015-03-04 15:29:04serhiy.storchakasetmessageid: <1425482944.6.0.872418849634.issue23583@psf.upfronthosting.co.za>
2015-03-04 15:29:04serhiy.storchakalinkissue23583 messages
2015-03-04 15:29:04serhiy.storchakacreate