summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-07-14 21:07:44 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-07-14 21:07:44 (GMT)
commita7878b77dcddf365452b53b223324a2f67d9354d (patch)
treede1f7cf1e247903d2a6bf74a21d0361933cc9bcc /Misc
parentd33344a030bececd68ce487445cd47a11ebdb3fd (diff)
downloadcpython-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 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 10bdaf6..ed21b1a 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -851,6 +851,7 @@ Nick Seidenman
Yury Selivanov
Fred Sells
Jiwon Seo
+Iñigo Serna
Roger D. Serwy
Jerry Seutter
Denis Severson
diff --git a/Misc/NEWS b/Misc/NEWS
index 7e97bed..bfdc3a3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -225,6 +225,9 @@ Core and Builtins
Library
-------
+- Issue #6755: Add get_wch() method to curses.window class. Patch by Iñigo
+ Serna.
+
- Add cgi.closelog() function to close the log file.
- Issue #12502: asyncore: fix polling loop with AF_UNIX sockets.