消息 [169171]
Oh, right. I agree that the current implementation of window.get_wch() is useless. I missed completly key codes.
Attached patch changes the API of get_wch() from get_wch()->key:int to get_wch()->(is_key_code: bool, key: str). Examples: (True, 'KEY_UP'), (False, 'é').
Problem: unget_wch() test fails. "unget_wch('é'); is_key_code, ch = win.get_wch()" returns is_key_code=True, ch=''. I don't see how to specify to unget_wch() if the argument is a key code or not... It's maybe an issue in unget_wch() API that cannot be fixed in Python? |
|
| 日期 |
用户 |
动作 |
参数 |
| 2012-08-26 21:07:40 | vstinner | 修改 | recipients:
+ vstinner, Arfrever, simpkins |
| 2012-08-26 21:07:40 | vstinner | 修改 | messageid: <1346015260.26.0.3127259418.issue15785@psf.upfronthosting.co.za> |
| 2012-08-26 21:07:39 | vstinner | 链接 | issue15785 messages |
| 2012-08-26 21:07:39 | vstinner | 创建 | |
|