1 """Backward-compatibility version of TERMIOS; export constants exported by
2 termios, and issue a deprecation warning.
6 warnings
.warn("the TERMIOS module is deprecated; please use termios",
10 # Export the constants known to the termios module:
13 # and *only* the constants:
14 __all__
= [s
for s
in dir() if s
[0] in "ABCDEFGHIJKLMNOPQRSTUVWXYZ"]