Issue #20197: Added support for the WebP image type in the imghdr module.

Patch by Fabrice Aneche and Claudiu Popa.
This commit is contained in:
Serhiy Storchaka 2014-05-25 11:45:37 +03:00
parent e84d26c61b
commit 2f8dca735e
6 changed files with 17 additions and 1 deletions

View file

@ -16,7 +16,8 @@ TEST_FILES = (
('python.ras', 'rast'),
('python.sgi', 'rgb'),
('python.tiff', 'tiff'),
('python.xbm', 'xbm')
('python.xbm', 'xbm'),
('python.webp', 'webp'),
)
class UnseekableIO(io.FileIO):