summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-09-21 01:35:44 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-09-21 01:35:44 (GMT)
commitc78fb33f81819cd8c7c1faac352b0b669703425e (patch)
treeac887597565f1f3e6c20675f3d3ca56456d9d5c9 /Doc
parent9415afcce1a130e16b92dd10591bfaf813f6b45c (diff)
downloadcpython-c78fb33f81819cd8c7c1faac352b0b669703425e.zip
cpython-c78fb33f81819cd8c7c1faac352b0b669703425e.tar.gz
cpython-c78fb33f81819cd8c7c1faac352b0b669703425e.tar.bz2
What's New in Python 3.3: add curses.unget_wch()
Diffstat (limited to 'Doc')
-rw-r--r--Doc/whatsnew/3.3.rst12
1 files changed, 8 insertions, 4 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst
index 2c96adf..5a0e7ad 100644
--- a/Doc/whatsnew/3.3.rst
+++ b/Doc/whatsnew/3.3.rst
@@ -94,17 +94,21 @@ versions.
crypt
-----
-Addition of salf and modular crypt format to the :mod:`crypt` module.
+Addition of salt and modular crypt format and the :func:`~crypt.mksalt`
+function to the :mod:`crypt` module.
(:issue:`10924`)
curses
------
-The :class:`curses.window` class has a new :meth:`~curses.window.get_wch` method
-to get a wide character. Patch by Iñigo Serna.
+ * The :class:`curses.window` class has a new :meth:`~curses.window.get_wch`
+ method to get a wide character
+ * The :mod:`curses` module has a new :meth:`~curses.unget_wch` function to
+ push a wide character so the next :meth:`~curses.window.get_wch` will return
+ it
-(:issue:`6755`)
+(Contributed by Iñigo Serna in :issue:`6755`)
faulthandler
------------