Staging
v0.5.1
https://github.com/python/cpython
Revision 4595b6b35d56a3db47a12bf182f3953168371a2d authored by Raymond Hettinger on 02 September 2003, 07:01:11 UTC, committed by Raymond Hettinger on 02 September 2003, 07:01:11 UTC
1 parent c6c1a15
Raw File
Tip revision: 4595b6b35d56a3db47a12bf182f3953168371a2d authored by Raymond Hettinger on 02 September 2003, 07:01:11 UTC
Only apply case-insensitivity test on appropriate platforms.' test_filecmp.py
Tip revision: 4595b6b
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