From d7fdc86153daf42a1f77e5bdf6bf68838f6ba338 Mon Sep 17 00:00:00 2001 From: Berker Peksag Date: Sat, 9 Apr 2016 08:00:20 +0300 Subject: Issue #16329: Add .webm to mimetypes.types_map Patch by Giampaolo Rodola'. --- Lib/mimetypes.py | 1 + Misc/NEWS | 2 ++ 2 files changed, 3 insertions(+) diff --git a/Lib/mimetypes.py b/Lib/mimetypes.py index f02d62d..0be76ad 100644 --- a/Lib/mimetypes.py +++ b/Lib/mimetypes.py @@ -514,6 +514,7 @@ def _default_mime_types(): '.ustar' : 'application/x-ustar', '.vcf' : 'text/x-vcard', '.wav' : 'audio/x-wav', + '.webm' : 'video/webm', '.wiz' : 'application/msword', '.wsdl' : 'application/xml', '.xbm' : 'image/x-xbitmap', diff --git a/Misc/NEWS b/Misc/NEWS index 735cb8a..676f37e 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -99,6 +99,8 @@ Core and Builtins Library ------- +- Issue #16329: Add .webm to mimetypes.types_map. Patch by Giampaolo Rodola'. + - Issue #13952: Add .csv to mimetypes.types_map. Patch by Geoff Wilson. - Issue #26709: Fixed Y2038 problem in loading binary PLists. -- cgit v0.12