diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2012-08-28 23:40:57 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2012-08-28 23:40:57 (GMT) |
commit | ca2b64682e2f3c5e3fb2ed150600a73105119e82 (patch) | |
tree | 69f5e40353c33dfbbfc79fb7c49cc1a1aaca3bcc /Misc | |
parent | 3694401ad278040c6517095ecb2d50ee43b0d7fb (diff) | |
download | cpython-ca2b64682e2f3c5e3fb2ed150600a73105119e82.zip cpython-ca2b64682e2f3c5e3fb2ed150600a73105119e82.tar.gz cpython-ca2b64682e2f3c5e3fb2ed150600a73105119e82.tar.bz2 |
Issue #15785: Modify window.get_wch() API of the curses module: return a
character for most keys, and an integer for special keys, instead of always
returning an integer. So it is now possible to distinguish special keys like
keypad keys.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -13,6 +13,11 @@ Core and Builtins Library ------- +- Issue #15785: Modify window.get_wch() API of the curses module: return + a character for most keys, and an integer for special keys, instead of + always returning an integer. So it is now possible to distinguish special + keys like keypad keys. + What's New in Python 3.3.0 Release Candidate 1? =============================================== @@ -23,7 +28,7 @@ Core and Builtins ----------------- - Issue #15573: memoryview comparisons are now performed by value with full - support for any valid struct module format definition. + support for any valid struct module format definition. - Issue #15316: When an item in the fromlist for __import__ doesn't exist, don't raise an error, but if an exception is raised as part of an import do |