Hello,<br><br>I have the same problem mentioned in <a href="http://groups.google.com/group/comp.lang.python/browse_thread/thread/c70c80cd9bc7bac6?pli=1">http://groups.google.com/group/comp.lang.python/browse_thread/thread/c70c80cd9bc7bac6?pli=1</a> some months ago.<br>
<br>Python 2.6 program which uses ncurses module in a terminal configured to use UTF-8 encoding.<br><br>When trying to get input from keyboard, a non-ascii character (like ç) is returned as 2 integers < 255, needing 2 calls to getch method to get both.<br>
These two integers \xc3 \xa7 forms the utf-8 encoded representation of ç character.<br><br>ncurses get_wch documentation states the function should return an unique integer > 255 with the ordinal representation of that unicode char encoded in UTF-8, \xc3a7.<br>
<br><br>[Please, read the link above, it explains the issue much better that what I could do.]<br><br><br>Any idea or update on this?<br><br><br>Thanks,<br>Iñigo Serna<br><br>PS: my system is a Linux Fedora 11 x86_64. Same happens on console, gnome-terminal or xterm.<br>
<br>