Commit 5dd09bb5 authored by Fred Drake's avatar Fred Drake

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

module; that won't happen.
parent ddd802cb
......@@ -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 *
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment