summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2001-01-13 14:53:34 +0000
committerAndrew M. Kuchling <amk@amk.ca>2001-01-13 14:53:34 +0000
commitb92995fb9a5bdf3b510a29906a52afc0093d9217 (patch)
tree64f52774fa75c5ada91cddd0f676a8683837f687 /Misc
parent9544c098068f0c69b524cb31135ddee5d4fb14ca (diff)
downloadcpython-b92995fb9a5bdf3b510a29906a52afc0093d9217.tar.gz
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 dd3c01f76a..721c222abd 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.