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 metolone
Recipients ezio.melotti, metolone
Date 2012-03-08.04:35:31
SpamBayes Score 2.0702612e-10
Marked as misclassified No
Message-id <1331181333.28.0.535514339767.issue14227@psf.upfronthosting.co.za>
In-reply-to
Content
This is on Windows 7 SP1.  Run 'chcp 65001' then Python from a console.  Note the extra characters when non-ASCII characters are in the string.  At a guess it appears to be using the UTF-8 byte length of the internal representation instead of the character count.

Python 3.3.0a1 (default, Mar  4 2012, 17:27:59) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> print('hello')
hello
>>> print('p\u012bny\u012bn')
pīnyīn
n
>>> print('\u012b'*10)
īīīīīīīīīī
�īīīī
�ī
History
Date User Action Args
2012-03-08 04:35:33metolonesetrecipients: + metolone, ezio.melotti
2012-03-08 04:35:33metolonesetmessageid: <1331181333.28.0.535514339767.issue14227@psf.upfronthosting.co.za>
2012-03-08 04:35:32metolonelinkissue14227 messages
2012-03-08 04:35:31metolonecreate