Staging
v0.8.1
Revision 4ca5f38f463301cd17284c3ed45add88b3ccc24b authored by Jack Jansen on 04 September 2001, 09:05:11 UTC, committed by Jack Jansen on 04 September 2001, 09:05:11 UTC
1 parent 83e7ccc
Raw File
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