changeset: 100879:711672506b40 branch: 3.5 parent: 100876:09dc97edf454 user: Berker Peksag date: Sat Apr 09 07:52:05 2016 +0300 files: Lib/mimetypes.py Misc/NEWS description: Issue #13952: Add .csv to mimetypes.types_map Patch by Geoff Wilson. diff -r 09dc97edf454 -r 711672506b40 Lib/mimetypes.py --- a/Lib/mimetypes.py Fri Apr 08 15:06:54 2016 -0700 +++ b/Lib/mimetypes.py Sat Apr 09 07:52:05 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 09dc97edf454 -r 711672506b40 Misc/NEWS --- a/Misc/NEWS Fri Apr 08 15:06:54 2016 -0700 +++ b/Misc/NEWS Sat Apr 09 07:52:05 2016 +0300 @@ -99,6 +99,8 @@ Library ------- +- Issue #13952: Add .csv to mimetypes.types_map. Patch by Geoff Wilson. + - Issue #26709: Fixed Y2038 problem in loading binary PLists. - Issue #23735: Handle terminal resizing with Readline 6.3+ by installing our