diff options
| author | travisoneill <travis.h.oneill@gmail.com> | 2018-10-09 04:43:58 (GMT) |
|---|---|---|
| committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2018-10-09 04:43:58 (GMT) |
| commit | 199a280af540e3194405eb250ca1a8d487f6a4f7 (patch) | |
| tree | ea558df11ddb089f3a97b798a43954e1290198d1 /Lib | |
| parent | 6261ae9b01fb8429b779169f8de37ff567c144e8 (diff) | |
| download | cpython-199a280af540e3194405eb250ca1a8d487f6a4f7.zip cpython-199a280af540e3194405eb250ca1a8d487f6a4f7.tar.gz cpython-199a280af540e3194405eb250ca1a8d487f6a4f7.tar.bz2 | |
bpo-34758: add .wasm to recognized file extensions in mimetypes module (GH-9464)
Diffstat (limited to 'Lib')
| -rw-r--r-- | Lib/mimetypes.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/mimetypes.py b/Lib/mimetypes.py index d5006fa..bc64711 100644 --- a/Lib/mimetypes.py +++ b/Lib/mimetypes.py @@ -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', |
