diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-04-09 04:52:05 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-04-09 04:52:05 (GMT) |
commit | a2d7cf087f5496dd86c99a9b64821bb35be26bba (patch) | |
tree | 2b96d3bfd7738ea56fd803b14dee95f6e22470e2 /Lib | |
parent | 09455589c71e06fdc1f0b83711dbcd2ff08c6e20 (diff) | |
download | cpython-a2d7cf087f5496dd86c99a9b64821bb35be26bba.zip cpython-a2d7cf087f5496dd86c99a9b64821bb35be26bba.tar.gz cpython-a2d7cf087f5496dd86c99a9b64821bb35be26bba.tar.bz2 |
Issue #13952: Add .csv to mimetypes.types_map
Patch by Geoff Wilson.
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 d64726b..f02d62d 100644 --- a/Lib/mimetypes.py +++ b/Lib/mimetypes.py @@ -416,6 +416,7 @@ def _default_mime_types(): '.cpio' : 'application/x-cpio', '.csh' : 'application/x-csh', '.css' : 'text/css', + '.csv' : 'text/csv', '.dll' : 'application/octet-stream', '.doc' : 'application/msword', '.dot' : 'application/msword', |