Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #100028 > unrolled thread

Re: Unicode failure

Started byTerry Reedy <tjreedy@udel.edu>
First post2015-12-05 01:06 -0500
Last post2015-12-05 01:06 -0500
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: Unicode failure Terry Reedy <tjreedy@udel.edu> - 2015-12-05 01:06 -0500

#100028 — Re: Unicode failure

FromTerry Reedy <tjreedy@udel.edu>
Date2015-12-05 01:06 -0500
SubjectRe: Unicode failure
Message-ID<mailman.218.1449295608.14615.python-list@python.org>
On 12/4/2015 10:22 PM, Random832 wrote:
> On 2015-12-04, Terry Reedy <tjreedy@udel.edu> wrote:
>> Tk widgets, and hence IDLE windows, will print any character from \u0000
>> to \uffff without raising, even if the result is blank or ￿.  Higher
>> codepoints fail, but allowing the entire BMP is better than any Windows
>> codepage.
>
> Well, any bar 1200, 1201, 12000, 12001, 65000, 65001, and 54936.

Test before you post.

 >>> for cp in 1200, 1201, 12000, 12001, 65000, 65001, 54936:
	print(chr(cp))

	
Ұ
ұ
⻠
⻡
﷨
﷩
횘



-- 
Terry Jan Reedy

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web