Staging
v0.5.1
https://github.com/python/cpython
Revision 51e80dfd0201df9faff34774dece3ae92550657d authored by Michael W. Hudson on 07 October 2002, 11:30:07 UTC, committed by Michael W. Hudson on 07 October 2002, 11:30:07 UTC
Clamp code objects' tp_compare result to [-1, 1].

Bugfix candidate.
1 parent c01f360
Raw File
Tip revision: 51e80dfd0201df9faff34774dece3ae92550657d authored by Michael W. Hudson on 07 October 2002, 11:30:07 UTC
Backport my checkin of revision 2.264 of Python/compile.c:
Tip revision: 51e80df
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