Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: 00833d507b999bfdf858ac8b76d5c5a1fd93ec45 authored by cvs2svn on 13 April 2001, 19:41:28 UTC
This commit was manufactured by cvs2svn to create tag 'r21c1'.
Tip revision: 00833d5
TERMIOS.py
"""Backward-compatibility version of TERMIOS; export constants exported by
termios, and issue a deprecation warning.
"""

import warnings
warnings.warn("the TERMIOS module is deprecated; please use termios",
              DeprecationWarning)


# Export the constants known to the termios module:
from termios import *

# and *only* the constants:
__all__ = [s for s in dir() if s[0] in "ABCDEFGHIJKLMNOPQRSTUVWXYZ"]
back to top