]> granicus.if.org Git - python/commitdiff
Remove TERMIOS module
authorAndrew M. Kuchling <amk@amk.ca>
Tue, 31 Aug 2004 13:06:16 +0000 (13:06 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Tue, 31 Aug 2004 13:06:16 +0000 (13:06 +0000)
Lib/TERMIOS.py [deleted file]

diff --git a/Lib/TERMIOS.py b/Lib/TERMIOS.py
deleted file mode 100644 (file)
index 66795fc..0000000
+++ /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"]