blob: 0b96e554b3cc091d49c8f4fc055dac320dfd98c8 [file] [log] [blame]
Fred Drakeddd802c2001-02-27 21:35:40 +00001"""Backward-compatibility version of TERMIOS; export constants exported by
2termios, and issue a deprecation warning.
3"""
4
5import warnings
6warnings.warn("the TERMIOS module is deprecated; please use termios",
7 DeprecationWarning)
8
9# Ignore further deprecation warnings about this module
10warnings.filterwarnings("ignore", "", DeprecationWarning, __name__)
11
12
13# Export the constants known to the termios module:
14from termios import *
15
16# and *only* the constants:
17__all__ = [s for s in dir() if s[0] in "ABCDEFGHIJKLMNOPQRSTUVWXYZ"]