No need to call filterwarnings() to suppress further warnings from this

module; that won't happen.
This commit is contained in:
Fred Drake 2001-02-27 21:51:47 +00:00
parent ddd802cbd7
commit 5dd09bb5df

View file

@ -6,9 +6,6 @@ import warnings
warnings.warn("the TERMIOS module is deprecated; please use termios",
DeprecationWarning)
# Ignore further deprecation warnings about this module
warnings.filterwarnings("ignore", "", DeprecationWarning, __name__)
# Export the constants known to the termios module:
from termios import *