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 benjamin.peterson, ezio.melotti, georg.brandl, lemburg, pitrou, serhiy.storchaka, vstinner
Date 2015-03-29.07:36:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1427614613.4.0.207162270319.issue23803@psf.upfronthosting.co.za>
In-reply-to
Content
The bug can be reproduced on little-endian platform.

>>> 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'.partition('Ā')
('A', 'Ā', 'B\x00C\x00D\x00E\x00F\x00G\x00H\x00I\x00J\x00K\x00L\x00M\x00')
>>> 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'.rpartition('Ā')
('A\x00B\x00C\x00D\x00E\x00F\x00G\x00H\x00I\x00J\x00K\x00L\x00M', 'Ā', '')
History
Date User Action Args
2015-03-29 07:36:53serhiy.storchakasetrecipients: + serhiy.storchaka, lemburg, georg.brandl, pitrou, vstinner, benjamin.peterson, ezio.melotti
2015-03-29 07:36:53serhiy.storchakasetmessageid: <1427614613.4.0.207162270319.issue23803@psf.upfronthosting.co.za>
2015-03-29 07:36:53serhiy.storchakalinkissue23803 messages
2015-03-29 07:36:53serhiy.storchakacreate