]> granicus.if.org Git - python/commitdiff
Issue #16329: Add .webm to mimetypes.types_map
authorBerker Peksag <berker.peksag@gmail.com>
Sat, 9 Apr 2016 05:05:18 +0000 (08:05 +0300)
committerBerker Peksag <berker.peksag@gmail.com>
Sat, 9 Apr 2016 05:05:18 +0000 (08:05 +0300)
Patch by Giampaolo Rodola'.

Lib/mimetypes.py
Misc/NEWS

index a39b543c4c9ac08dc2eedc039bf0415ebc18f40f..c0316a07a0f392b468f5f0c0243a1bcc428f39a8 100644 (file)
@@ -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',
index c0e0e4d6d9310e6581ce32590a7dd6a70966ce48..894d6691ebe28927163c96033cda439bed9f9756 100644 (file)
--- 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.