From 265bc81fa38852ce8bd624ecc0972a2500d0f83c Mon Sep 17 00:00:00 2001 From: Berker Peksag Date: Sat, 9 Apr 2016 08:05:18 +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 a39b543..c0316a0 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 c0e0e4d..894d669 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -65,6 +65,8 @@ Core and Builtins Library ------- +- Issue #16329: Add .webm to mimetypes.types_map. Patch by Giampaolo Rodola'. + - Issue #23735: Handle terminal resizing with Readline 6.3+ by installing our own SIGWINCH handler. Patch by Eric Price. -- cgit v0.12