summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_imghdr.py
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2014-06-26 16:27:57 (GMT)
committerR David Murray <rdmurray@bitdance.com>2014-06-26 16:27:57 (GMT)
commit2f60820f4c1bdfce75f30ddc53d97587a3256dcf (patch)
tree6b115cf76be50645d161ebde14913202bbd64403 /Lib/test/test_imghdr.py
parenta157867a3d10e4ee802fa2fd910f2dda383fa823 (diff)
downloadcpython-2f60820f4c1bdfce75f30ddc53d97587a3256dcf.zip
cpython-2f60820f4c1bdfce75f30ddc53d97587a3256dcf.tar.gz
cpython-2f60820f4c1bdfce75f30ddc53d97587a3256dcf.tar.bz2
#20295: Teach imghdr to recognize OpenEXR format images.
Patch by Martin Vignali, test by Claudiu Popa.
Diffstat (limited to 'Lib/test/test_imghdr.py')
-rw-r--r--Lib/test/test_imghdr.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_imghdr.py b/Lib/test/test_imghdr.py
index e2a1aca..b54daf8 100644
--- a/Lib/test/test_imghdr.py
+++ b/Lib/test/test_imghdr.py
@@ -18,6 +18,7 @@ TEST_FILES = (
('python.tiff', 'tiff'),
('python.xbm', 'xbm'),
('python.webp', 'webp'),
+ ('python.exr', 'exr'),
)
class UnseekableIO(io.FileIO):