Add contents of curses package

This commit is contained in:
Andrew M. Kuchling 2000-06-10 23:06:53 +00:00
parent c0328f014b
commit d0939fa592
2 changed files with 68 additions and 0 deletions

18
Lib/curses/__init__.py Normal file
View file

@ -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