changeset: 100884:e704e0786332 branch: 2.7 user: Berker Peksag date: Sat Apr 09 08:06:15 2016 +0300 files: Lib/mimetypes.py Misc/NEWS description: Issue #13952: Add .csv to mimetypes.types_map Patch by Geoff Wilson. diff -r 6ed3cb699be6 -r e704e0786332 Lib/mimetypes.py --- a/Lib/mimetypes.py Sat Apr 09 08:05:18 2016 +0300 +++ b/Lib/mimetypes.py Sat Apr 09 08:06:15 2016 +0300 @@ -420,6 +420,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 6ed3cb699be6 -r e704e0786332 Misc/NEWS --- a/Misc/NEWS Sat Apr 09 08:05:18 2016 +0300 +++ b/Misc/NEWS Sat Apr 09 08:06:15 2016 +0300 @@ -65,6 +65,8 @@ Library ------- +- Issue #13952: Add .csv to mimetypes.types_map. Patch by Geoff Wilson. + - Issue #16329: Add .webm to mimetypes.types_map. Patch by Giampaolo Rodola'. - Issue #23735: Handle terminal resizing with Readline 6.3+ by installing our