summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2012-08-28 23:40:57 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2012-08-28 23:40:57 (GMT)
commitca2b64682e2f3c5e3fb2ed150600a73105119e82 (patch)
tree69f5e40353c33dfbbfc79fb7c49cc1a1aaca3bcc /Misc
parent3694401ad278040c6517095ecb2d50ee43b0d7fb (diff)
downloadcpython-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/NEWS7
1 files changed, 6 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 17bc330..bc091f1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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