Staging
v0.5.1
https://github.com/python/cpython
Revision aa088c6b5c01682901333a6badd538be764cdc3a authored by Fred Drake on 24 July 2003, 01:45:16 UTC, committed by Fred Drake on 24 July 2003, 01:45:16 UTC
- remove extraneous blank lines
- add missing \end{methoddesc} (prevented formatting)
1 parent 75c9877
Raw File
Tip revision: aa088c6b5c01682901333a6badd538be764cdc3a authored by Fred Drake on 24 July 2003, 01:45:16 UTC
- Americanize a spelling
Tip revision: aa088c6
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