mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Add contents of curses package
This commit is contained in:
parent
c0328f014b
commit
d0939fa592
2 changed files with 68 additions and 0 deletions
18
Lib/curses/__init__.py
Normal file
18
Lib/curses/__init__.py
Normal 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
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue