]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
What's New in Python 3.3: add curses.unget_wch()
authorVictor Stinner <victor.stinner@haypocalc.com>
Wed, 21 Sep 2011 01:35:44 +0000 (03:35 +0200)
committerVictor Stinner <victor.stinner@haypocalc.com>
Wed, 21 Sep 2011 01:35:44 +0000 (03:35 +0200)
Doc/whatsnew/3.3.rst

index 2c96adf91213ce3c49881956f65fc2e546b42a35..5a0e7ade32daa45bebd3cd5aebc6331bf8b28a5d 100644 (file)
@@ -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
 ------------