summaryrefslogtreecommitdiffstats
path: root/Lib/TERMIOS.py
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-02-27 21:51:47 (GMT)
committerFred Drake <fdrake@acm.org>2001-02-27 21:51:47 (GMT)
commit5dd09bb5df2611204497b41aa59dc8245e1a0028 (patch)
treee7a7b7b6bd651efc68d125fcc87ee3911debd110 /Lib/TERMIOS.py
parentddd802cbd7790033fb71650281c14e93bf01cf25 (diff)
downloadcpython-5dd09bb5df2611204497b41aa59dc8245e1a0028.zip
cpython-5dd09bb5df2611204497b41aa59dc8245e1a0028.tar.gz
cpython-5dd09bb5df2611204497b41aa59dc8245e1a0028.tar.bz2
No need to call filterwarnings() to suppress further warnings from this
module; that won't happen.
Diffstat (limited to 'Lib/TERMIOS.py')
-rw-r--r--Lib/TERMIOS.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/TERMIOS.py b/Lib/TERMIOS.py
index 0b96e55..66795fc 100644
--- a/Lib/TERMIOS.py
+++ b/Lib/TERMIOS.py
@@ -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 *