bpo-34758: add .wasm to recognized file extensions in mimetypes module (GH-9464)
This commit is contained in:
parent
6261ae9b01
commit
199a280af5
|
@ -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',
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
Add .wasm -> application/wasm to list of recognized file types and content
|
||||
type headers
|
Loading…
Reference in New Issue