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_imageop.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_imageop.py')
-rwxr-xr-x | Lib/test/test_imageop.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Lib/test/test_imageop.py b/Lib/test/test_imageop.py index 7b32bbc..b01e83f 100755 --- a/Lib/test/test_imageop.py +++ b/Lib/test/test_imageop.py @@ -9,6 +9,12 @@ from test.test_support import verbose, unlink import imageop, uu, os +import warnings +warnings.filterwarnings("ignore", + "the rgbimg module is deprecated", + DeprecationWarning, + ".*test_imageop") + def main(use_rgbimg=1): # Create binary test files |