diff options
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 7b32bbc36c..b01e83fa28 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 |