summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2001-01-13 14:53:34 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2001-01-13 14:53:34 (GMT)
commitf6f3a89fbd8b636da584ff7983e7b4fccfb13759 (patch)
tree1dfc2268ff612d13c5d5351f1eb5bea6fd032364 /Misc
parent10a2787313519965c64487956e4ad3506c22d050 (diff)
downloadcpython-f6f3a89fbd8b636da584ff7983e7b4fccfb13759.zip
cpython-f6f3a89fbd8b636da584ff7983e7b4fccfb13759.tar.gz
cpython-f6f3a89fbd8b636da584ff7983e7b4fccfb13759.tar.bz2
Mention new curses.panel module
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index dd3c01f..721c222 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -122,6 +122,9 @@ Standard library
right. Code that doesn't care where equal elements end up should
continue to use the old, short names ("bisect" and "insort").
+- The new curses.panel module wraps the panel library that forms part
+ of SYSV curses and ncurses. Contributed by Thomas Gellekum.
+
- The SocketServer module now sets the allow_reuse_address flag by
default in the TCPServer class.