diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2000-12-22 21:58:29 +0000 |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2000-12-22 21:58:29 +0000 |
commit | 9f5eeebb26f5c9022d98f27aadea559b100f914a (patch) | |
tree | 9622c2de6b7b4f0b488f2ea7dafc941a8c0abafe /Lib/curses/panel.py | |
parent | 676634beda921649547856bcc9d9c580d7af9eb7 (diff) | |
download | cpython-git-9f5eeebb26f5c9022d98f27aadea559b100f914a.tar.gz |
Wrapper for _curses_panel module; currently this adds nothing extra
beyond what's in _curses_panel
Diffstat (limited to 'Lib/curses/panel.py')
-rw-r--r-- | Lib/curses/panel.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Lib/curses/panel.py b/Lib/curses/panel.py new file mode 100644 index 0000000000..2c86d4cf36 --- /dev/null +++ b/Lib/curses/panel.py @@ -0,0 +1,9 @@ +"""curses.panel + +Module for using panels with curses. +""" + +__revision__ = "$Id$" + +from _curses_panel import * + |