Staging
v0.5.1
https://github.com/python/cpython
Revision 5af105eec996a86500d0b1e81379308b86ec4e38 authored by Jeremy Hylton on 11 April 2001, 16:21:51 UTC, committed by Jeremy Hylton on 11 April 2001, 16:21:51 UTC
consts, even if it is None.

Simplify _lookupName() by removing lots of redundant tests.
1 parent ceccc3c
Raw File
Tip revision: 5af105eec996a86500d0b1e81379308b86ec4e38 authored by Jeremy Hylton on 11 April 2001, 16:21:51 UTC
Make sure the docstring is always entered as the first element in the
Tip revision: 5af105e
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