mirror of
https://github.com/python/cpython.git
synced 2025-07-30 06:34:15 +00:00
Remove the rgbimg module. It has been deprecated since Python 2.5.
This commit is contained in:
parent
8d76cca026
commit
dc48b74497
11 changed files with 14 additions and 943 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue