Staging
v0.5.1
https://github.com/python/cpython
Revision 1deeef243de5a0a816d09a1e04d0ff8ef7e95341 authored by Michael W. Hudson on 25 March 2002, 12:34:15 UTC, committed by Michael W. Hudson on 25 March 2002, 12:34:15 UTC
    revision 1.27 of cmd.py

Flush stdout before reading next command.  Closes SF bug 526357.
1 parent 6ce28c3
Raw File
Tip revision: 1deeef243de5a0a816d09a1e04d0ff8ef7e95341 authored by Michael W. Hudson on 25 March 2002, 12:34:15 UTC
backport nascheme's checkin of
Tip revision: 1deeef2
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