Staging
v0.5.1
https://github.com/python/cpython
Revision 2389c097095198dc452ca2fb72d6f26a6d80b502 authored by Fred Drake on 07 December 2001, 21:59:56 UTC, committed by Fred Drake on 07 December 2001, 21:59:56 UTC
1 parent f927c4b
Raw File
Tip revision: 2389c097095198dc452ca2fb72d6f26a6d80b502 authored by Fred Drake on 07 December 2001, 21:59:56 UTC
Document that the flag and mode arguments to dumbdbm.open() are ignored.
Tip revision: 2389c09
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