mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-25 00:34:14 +03:00
Merge branch 'ubuntu10-04' of github.com:wiredfool/Pillow
This commit is contained in:
commit
168e58f948
|
@ -17,7 +17,7 @@
|
|||
|
||||
from functools import reduce
|
||||
|
||||
class Filter:
|
||||
class Filter(object):
|
||||
pass
|
||||
|
||||
##
|
||||
|
|
|
@ -2,7 +2,12 @@ from tester import *
|
|||
|
||||
from PIL import Image
|
||||
|
||||
def xtest_read():
|
||||
codecs = dir(Image.core)
|
||||
|
||||
if "webp_encoder" not in codecs or "webp_decoder" not in codecs:
|
||||
skip("webp support not available")
|
||||
|
||||
def test_read():
|
||||
""" Can we write a webp without error. Does it have the bits we expect?"""
|
||||
|
||||
file = "Images/lena.webp"
|
||||
|
|
Loading…
Reference in New Issue
Block a user