]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #16329: Add .webm to mimetypes.types_map
authorBerker Peksag <berker.peksag@gmail.com>
Sat, 9 Apr 2016 05:00:20 +0000 (08:00 +0300)
committerBerker Peksag <berker.peksag@gmail.com>
Sat, 9 Apr 2016 05:00:20 +0000 (08:00 +0300)
Patch by Giampaolo Rodola'.

Lib/mimetypes.py
Misc/NEWS

index f02d62d49fa1002df40f6aef7632130611edb929..0be76ad4f754c8abab0328fb4016c37ef7207600 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 735cb8ac31084be08329821f7db7c718cfe2208b..676f37e7e76b4db574867f7e35e60aa4eabe3253 100644 (file)
--- 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.