diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-07-14 21:07:44 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-07-14 21:07:44 (GMT) |
commit | a7878b77dcddf365452b53b223324a2f67d9354d (patch) | |
tree | de1f7cf1e247903d2a6bf74a21d0361933cc9bcc /Doc/whatsnew | |
parent | d33344a030bececd68ce487445cd47a11ebdb3fd (diff) | |
download | cpython-a7878b77dcddf365452b53b223324a2f67d9354d.zip cpython-a7878b77dcddf365452b53b223324a2f67d9354d.tar.gz cpython-a7878b77dcddf365452b53b223324a2f67d9354d.tar.bz2 |
Close #6755: Add get_wch() method to curses.window class
Patch by Iñigo Serna.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.3.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index 0498ca8..051d165 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -91,6 +91,14 @@ versions. (:issue:`12100`) +curses +------ + +The :class:`curses.window` class has a new :class:`~curses.window.get_wch` +method to a wide character. Patch by Iñigo Serna. + +(:issue:`6755`) + faulthandler ------------ |