[issue4652] IDLE does not work with Unicode

2012-03-23 Thread Daniel Swanson
Daniel Swanson added the comment: ok -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/

[issue4652] IDLE does not work with Unicode

2012-03-21 Thread Andrew Svetlov
Andrew Svetlov added the comment: Daniel Swanson, maybe my msg156512 was not obvious. You can use 'ç' without any problem in IDLE — it is BMP character. See http://en.wikipedia.org/wiki/Mapping_of_Unicode_characters for details. tkinter has full support for 'Basic Multilingual Plane' while last

[issue4652] IDLE does not work with Unicode

2012-03-21 Thread Ned Deily
Ned Deily added the comment: To add to the other comments, problems with input methods using Python 3 and Tkinter or IDLE are usually platform-specific issues with the implementation of Tk. In particular, the issue Jean-Christophe reported with Python 3.1.1 was very likely due to its use of

[issue4652] IDLE does not work with Unicode

2012-03-21 Thread Daniel Swanson
Daniel Swanson added the comment: I would say that alt-c is not a problem at all, but, some people might use 'ç' more that me, (I never have used 'ç' spesificaly) -- ___ Python tracker

[issue4652] IDLE does not work with Unicode

2012-03-21 Thread Andrew Svetlov
Andrew Svetlov added the comment: I close this issue because: - current 3.2 and upcoming 3.3 support Japanese characters very well. - there are problems with non-BMP characters not supported currently but it's another issue. See progress of #14200 and others for non-BMP. -- assignee:

[issue4652] IDLE does not work with Unicode

2012-03-21 Thread Andrew Svetlov
Andrew Svetlov added the comment: For now unicode BMP has full support in TK while non-BMP characters doesn't works. 'こ' character is BMP symbol: >>> hex(ord('こ')) '0x3053' which is lesser than non-BMP space (starting from 0x1). I have no idea why alt-c doesn't converted to 'ç' (also BMP

[issue4652] IDLE does not work with Unicode

2012-03-21 Thread Daniel Swanson
Daniel Swanson added the comment: alt-c does nothing for me -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue4652] IDLE does not work with Unicode

2012-03-21 Thread Daniel Swanson
Daniel Swanson added the comment: I opened my IDLE (v. 3.2.2 windows xp) and pasted in print('ここ') it printed ここ just fine. -- nosy: +weirdink13 ___ Python tracker ___ __

[issue4652] IDLE does not work with Unicode

2012-03-21 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue4652] IDLE does not work with Unicode

2009-11-04 Thread Jean-Christophe Helary
Jean-Christophe Helary added the comment: I've installed Python 3.1.1 on OSX today. 1) When I use the Japanese input from OSX, IDLE interprets any character I attempt to type as a space. 2) When I paste a Japanese string from a different place, it is correctly handled. For ex: >>> print('ここ')

[issue4652] IDLE does not work with Unicode

2009-08-03 Thread Guilherme Polo
Guilherme Polo added the comment: I can't seem to reproduce that, maybe it could be a tk issue ? Can you try writing anything (that doesn't work on IDLE) on a tkinter.Text widget to see if it shows there ? You could use this code below: from tkinter import Text text = Text() print(text.tk.cal

[issue4652] IDLE does not work with Unicode

2009-04-26 Thread Daniel Diniz
Changes by Daniel Diniz : -- components: +Unicode nosy: +gpolo priority: -> normal stage: -> test needed type: performance -> behavior ___ Python tracker ___ ___

[issue4652] IDLE does not work with Unicode

2008-12-12 Thread Aki Wakabayashi
New submission from Aki Wakabayashi : I have installed python 3.0 on Ubuntu 8.10 yesterday and played around with the new unicode features and had no problems with Japanese characters(both in interactive and script mode). However, after rebooting, IDLE will no longer let me input any Japanese cha