[Python-checkins] bpo-31715 Add mimetype for extension .mjs (#3908)

Andrew Svetlov webhook-mailer at python.org
Mon Oct 8 16:04:59 EDT 2018


https://github.com/python/cpython/commit/0854b92cd25613269d21de3cb5239379ddc0f2fb
commit: 0854b92cd25613269d21de3cb5239379ddc0f2fb
branch: master
author: Bradley Meck <bradley.meck at gmail.com>
committer: Andrew Svetlov <andrew.svetlov at gmail.com>
date: 2018-10-08T23:04:55+03:00
summary:

bpo-31715 Add mimetype for extension .mjs (#3908)

files:
A Misc/NEWS.d/next/Library/2018-08-15-16-22-30.bpo-31715.Iw8jS8.rst
M Lib/mimetypes.py

diff --git a/Lib/mimetypes.py b/Lib/mimetypes.py
index f25872102b8c..d5006fa4d316 100644
--- a/Lib/mimetypes.py
+++ b/Lib/mimetypes.py
@@ -448,6 +448,7 @@ def _default_mime_types():
         '.mht'    : 'message/rfc822',
         '.mhtml'  : 'message/rfc822',
         '.mif'    : 'application/x-mif',
+        '.mjs'    : 'application/javascript',
         '.mov'    : 'video/quicktime',
         '.movie'  : 'video/x-sgi-movie',
         '.mp2'    : 'audio/mpeg',
diff --git a/Misc/NEWS.d/next/Library/2018-08-15-16-22-30.bpo-31715.Iw8jS8.rst b/Misc/NEWS.d/next/Library/2018-08-15-16-22-30.bpo-31715.Iw8jS8.rst
new file mode 100644
index 000000000000..eacba28f9fd9
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-08-15-16-22-30.bpo-31715.Iw8jS8.rst
@@ -0,0 +1 @@
+Associate ``.mjs`` file extension with ``application/javascript`` MIME Type.



More information about the Python-checkins mailing list