summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-09-05 23:53:03 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-09-05 23:53:03 (GMT)
commit71e44cb97ffaaa3a777477aa6dcb0b0f29c9eda4 (patch)
treec0d3cf142d5142d2f9a374512af64287add19353 /Misc
parentd4d8ae5a42ac859c95bdcb2a608c1b972c56efac (diff)
downloadcpython-71e44cb97ffaaa3a777477aa6dcb0b0f29c9eda4.zip
cpython-71e44cb97ffaaa3a777477aa6dcb0b0f29c9eda4.tar.gz
cpython-71e44cb97ffaaa3a777477aa6dcb0b0f29c9eda4.tar.bz2
Issue #12567: Add curses.unget_wch() function
Push a character so the next get_wch() will return it.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index fbcdb8d..85af2ac 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -271,6 +271,9 @@ Core and Builtins
Library
-------
+- Issue #12567: Add curses.unget_wch() function. Push a character so the next
+ get_wch() will return it.
+
- Issue #9561: distutils and packaging now writes egg-info files using UTF-8,
instead of the locale encoding.