Staging
v0.5.1
https://github.com/python/cpython
Revision 952e735ce496177b1aabc9ebe7df972eb16fd8b6 authored by Guido van Rossum on 14 October 2002, 20:11:50 UTC, committed by Guido van Rossum on 14 October 2002, 20:11:50 UTC
1 parent dacbafb
Raw File
Tip revision: 952e735ce496177b1aabc9ebe7df972eb16fd8b6 authored by Guido van Rossum on 14 October 2002, 20:11:50 UTC
News about last-minute fix for SF bug 620705 (urlparse).
Tip revision: 952e735
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