bpo-34758: add .wasm to recognized file extensions in mimetypes module (GH-9464)

This commit is contained in:
travisoneill 2018-10-08 21:43:58 -07:00 committed by Andrew Svetlov
parent 6261ae9b01
commit 199a280af5
2 changed files with 3 additions and 0 deletions

View File

@ -515,6 +515,7 @@ def _default_mime_types():
'.txt' : 'text/plain',
'.ustar' : 'application/x-ustar',
'.vcf' : 'text/x-vcard',
'.wasm' : 'application/wasm',
'.wav' : 'audio/x-wav',
'.webm' : 'video/webm',
'.wiz' : 'application/msword',

View File

@ -0,0 +1,2 @@
Add .wasm -> application/wasm to list of recognized file types and content
type headers