Issue #16329: Add .webm to mimetypes.types_map

Patch by Giampaolo Rodola'.
This commit is contained in:
Berker Peksag 2016-04-09 08:05:18 +03:00
parent 86e0d57611
commit 265bc81fa3
2 changed files with 3 additions and 0 deletions

View 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',

View File

@ -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.