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 kbk, roger.serwy, serhiy.storchaka, steven.daprano, terry.reedy, Árpád Kósa
Date 2015-11-23.15:30:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1448292604.61.0.0604380359725.issue25709@psf.upfronthosting.co.za>
In-reply-to
Content
Confirmed on IDLE.

>>> s = ''
>>> for i in range(5):
	s += '\xe0'
	print(s)

	
à
àà
àà
àà
àà
>>> s = ''
>>> for i in range(5):
	s += chr(0xe0)
	print(s)

	
à
àà
àà
àà
àà
>>> s = ''
>>> for i in range(5):
	s += '\u0107'
	print(s)

	
ć
ćć
ćć
ćć
ćć
>>> s = ''
>>> for i in range(5):
	s += chr(0x107)
	print(s)

	
ć
ć
ć
ć
ć

This issue can be related to details of IDLE's standard streams and RPC.
History
Date User Action Args
2015-11-23 15:30:04serhiy.storchakasetrecipients: + serhiy.storchaka, terry.reedy, kbk, roger.serwy, steven.daprano, Árpád Kósa
2015-11-23 15:30:04serhiy.storchakasetmessageid: <1448292604.61.0.0604380359725.issue25709@psf.upfronthosting.co.za>
2015-11-23 15:30:04serhiy.storchakalinkissue25709 messages
2015-11-23 15:30:04serhiy.storchakacreate