diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2000-06-10 23:06:53 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2000-06-10 23:06:53 (GMT) |
commit | d0939fa592ea5d4e3c627cc2355072e90acd2459 (patch) | |
tree | b2daa0189222d0391a0b090bf3d4690dc687d916 /Lib/curses/__init__.py | |
parent | c0328f014bd3563d5bc00d8d434fe2749872247c (diff) | |
download | cpython-d0939fa592ea5d4e3c627cc2355072e90acd2459.zip cpython-d0939fa592ea5d4e3c627cc2355072e90acd2459.tar.gz cpython-d0939fa592ea5d4e3c627cc2355072e90acd2459.tar.bz2 |
Add contents of curses package
Diffstat (limited to 'Lib/curses/__init__.py')
-rw-r--r-- | Lib/curses/__init__.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Lib/curses/__init__.py b/Lib/curses/__init__.py new file mode 100644 index 0000000..8e8f7d8 --- /dev/null +++ b/Lib/curses/__init__.py @@ -0,0 +1,18 @@ +"""curses + +The main package for curses support for Python. Normally used by importing +the package, and perhaps a particular module inside it. + + import curses + from curses import textpad + curses.initwin() + ... + +""" + +__revision__ = "$Id$" + +from _curses import * +from curses.wrapper import wrapper + + |