Currently,there is no a simple way in curses bindings to get the code
associated with a key press of non ascii keystroke (f.e. ç) in terminals
configured with UTF-8 encoding.
getch returns the code for a wide character byte a byte.
But ncurses library has a proper function to do it: get_wch.
Patch against Python v2.6.2 to provide this missing get_wch method
in the ncurses bindings.
Include a test example and a patch to the documentation as well.
More info and a partial solution without patching python curses module
on this thread:
http://groups.google.com/group/comp.lang.python/browse_thread/thread/67dce30f0a2742a6?fwc=2 |