diff options
author | Tim Peters <tim.peters@gmail.com> | 2006-02-18 04:14:16 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2006-02-18 04:14:16 (GMT) |
commit | e2c9a6cea7f49cc7485ced3ed907c917e3ad656a (patch) | |
tree | 6d28acef9625c2075be879361341c90fe62d8205 /Lib/test/test_sundry.py | |
parent | 24f7cad6ca3140bf0dada04261cb372be658832e (diff) | |
download | cpython-e2c9a6cea7f49cc7485ced3ed907c917e3ad656a.zip cpython-e2c9a6cea7f49cc7485ced3ed907c917e3ad656a.tar.gz cpython-e2c9a6cea7f49cc7485ced3ed907c917e3ad656a.tar.bz2 |
Suppress new deprecation warnings when running the
test suite.
For urllib2, move the import of gopherlib into the
only function that uses it: users (including the
test suite) certainly shouldn't see a deprecation
warning just because they import urllib2! If they
actually use gopher_open(), fine, _then_ they should
see a deprecation warning.
Diffstat (limited to 'Lib/test/test_sundry.py')
-rw-r--r-- | Lib/test/test_sundry.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Lib/test/test_sundry.py b/Lib/test/test_sundry.py index 394d966..fd10b68 100644 --- a/Lib/test/test_sundry.py +++ b/Lib/test/test_sundry.py @@ -4,6 +4,11 @@ import warnings warnings.filterwarnings('ignore', r".*posixfile module", DeprecationWarning, 'posixfile$') +warnings.filterwarnings("ignore", + "the gopherlib module is deprecated", + DeprecationWarning, + ".*test_sundry") + from test.test_support import verbose import BaseHTTPServer |