Skip to content

Commit

Permalink
bpo-34758: add .wasm to recognized file extensions in mimetypes module (
Browse files Browse the repository at this point in the history
  • Loading branch information
travisoneill authored and asvetlov committed Oct 9, 2018
1 parent 6261ae9 commit 199a280
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions Lib/mimetypes.py
Expand Up @@ -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',
Expand Down
@@ -0,0 +1,2 @@
Add .wasm -> application/wasm to list of recognized file types and content
type headers

0 comments on commit 199a280

Please sign in to comment.