Remove the rgbimg module. It has been deprecated since Python 2.5.

This commit is contained in:
Brett Cannon 2007-05-20 07:09:50 +00:00
parent 8d76cca026
commit dc48b74497
11 changed files with 14 additions and 943 deletions

View file

@ -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):