mirror of
https://github.com/python/cpython.git
synced 2025-09-17 14:16:02 +00:00
18 lines
309 B
Python
18 lines
309 B
Python
"""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
|
|
|
|
|