changeset: 100880:5143f86ffe57 parent: 100878:b72f2d699563 parent: 100879:711672506b40 user: Berker Peksag date: Sat Apr 09 07:53:00 2016 +0300 files: Misc/NEWS description: Issue #13952: Add .csv to mimetypes.types_map Patch by Geoff Wilson. diff -r b72f2d699563 -r 5143f86ffe57 Lib/mimetypes.py --- a/Lib/mimetypes.py Sat Apr 09 07:34:39 2016 +0300 +++ b/Lib/mimetypes.py Sat Apr 09 07:53:00 2016 +0300 @@ -416,6 +416,7 @@ '.cpio' : 'application/x-cpio', '.csh' : 'application/x-csh', '.css' : 'text/css', + '.csv' : 'text/csv', '.dll' : 'application/octet-stream', '.doc' : 'application/msword', '.dot' : 'application/msword', diff -r b72f2d699563 -r 5143f86ffe57 Misc/NEWS --- a/Misc/NEWS Sat Apr 09 07:34:39 2016 +0300 +++ b/Misc/NEWS Sat Apr 09 07:53:00 2016 +0300 @@ -237,6 +237,8 @@ Library ------- +- Issue #13952: Add .csv to mimetypes.types_map. Patch by Geoff Wilson. + - Issue #26587: the site module now allows .pth files to specify files to be added to sys.path (e.g. zip files).