diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2004-08-31 13:06:16 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2004-08-31 13:06:16 (GMT) |
commit | f3f1c85858a2b0191e3755ae7d357fa292f3def7 (patch) | |
tree | 70799ce215f6c8011f527e4c01e012c231f38e7a /Lib | |
parent | a46fd8480fc9354dbe4dc8a64bae256eec235225 (diff) | |
download | cpython-f3f1c85858a2b0191e3755ae7d357fa292f3def7.zip cpython-f3f1c85858a2b0191e3755ae7d357fa292f3def7.tar.gz cpython-f3f1c85858a2b0191e3755ae7d357fa292f3def7.tar.bz2 |
Remove TERMIOS module
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/TERMIOS.py | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/Lib/TERMIOS.py b/Lib/TERMIOS.py deleted file mode 100644 index 66795fc..0000000 --- a/Lib/TERMIOS.py +++ /dev/null @@ -1,14 +0,0 @@ -"""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"] |