[Python-checkins] cpython: What's New in Python 3.3: add curses.unget_wch()

victor.stinner python-checkins at python.org
Wed Sep 21 03:35:58 CEST 2011


http://hg.python.org/cpython/rev/c372a79c771e
changeset:   72433:c372a79c771e
user:        Victor Stinner <victor.stinner at haypocalc.com>
date:        Wed Sep 21 03:35:44 2011 +0200
summary:
  What's New in Python 3.3: add curses.unget_wch()

files:
  Doc/whatsnew/3.3.rst |  12 ++++++++----
  1 files changed, 8 insertions(+), 4 deletions(-)


diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst
--- a/Doc/whatsnew/3.3.rst
+++ b/Doc/whatsnew/3.3.rst
@@ -94,17 +94,21 @@
 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
 ------------

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list