changeset: 100881:0327a5a11108 branch: 3.5 parent: 100879:711672506b40 user: Berker Peksag date: Sat Apr 09 08:00:20 2016 +0300 files: Lib/mimetypes.py Misc/NEWS description: Issue #16329: Add .webm to mimetypes.types_map Patch by Giampaolo Rodola'. diff -r 711672506b40 -r 0327a5a11108 Lib/mimetypes.py --- a/Lib/mimetypes.py Sat Apr 09 07:52:05 2016 +0300 +++ b/Lib/mimetypes.py Sat Apr 09 08:00:20 2016 +0300 @@ -514,6 +514,7 @@ '.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 -r 711672506b40 -r 0327a5a11108 Misc/NEWS --- a/Misc/NEWS Sat Apr 09 07:52:05 2016 +0300 +++ b/Misc/NEWS Sat Apr 09 08:00:20 2016 +0300 @@ -99,6 +99,8 @@ 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.