diff options
author | Brett Cannon <bcannon@gmail.com> | 2007-05-20 07:09:50 +0000 |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2007-05-20 07:09:50 +0000 |
commit | dc48b74497b67a449dd622fdaa7d69e7bff65a5e (patch) | |
tree | ba027660da3557237255591af3491af213e3a15e /Lib/test/regrtest.py | |
parent | 8d76cca0265aaa23d2a59af3bfb1bcd133c0a59d (diff) | |
download | cpython-git-dc48b74497b67a449dd622fdaa7d69e7bff65a5e.tar.gz |
Remove the rgbimg module. It has been deprecated since Python 2.5.
Diffstat (limited to 'Lib/test/regrtest.py')
-rwxr-xr-x | Lib/test/regrtest.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index 00451514b4..cba70ed16e 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -1337,7 +1337,6 @@ class _ExpectedSkips: self.expected.add('test_timeout') if sys.maxint == 9223372036854775807L: - self.expected.add('test_rgbimg') self.expected.add('test_imageop') if not sys.platform in ("mac", "darwin"): @@ -1352,6 +1351,11 @@ class _ExpectedSkips: for skip in WIN_ONLY: self.expected.add(skip) + if sys.platform != 'irix': + IRIX_ONLY =["test_imageop"] + for skip in IRIX_ONLY: + self.expected.add(skip) + self.valid = True def isvalid(self): |