diff options
author | Sandro Tosi <sandro.tosi@gmail.com> | 2011-08-20 22:16:18 (GMT) |
---|---|---|
committer | Sandro Tosi <sandro.tosi@gmail.com> | 2011-08-20 22:16:18 (GMT) |
commit | 83f7d347d53ea395cd354bd790d49533d06ca717 (patch) | |
tree | 9835e2042df023797997d98497eadd956dfbd4a7 /Lib/mimetypes.py | |
parent | 36aa372f55840dedd15c27bbd038f40e7540e3a0 (diff) | |
download | cpython-83f7d347d53ea395cd354bd790d49533d06ca717.zip cpython-83f7d347d53ea395cd354bd790d49533d06ca717.tar.gz cpython-83f7d347d53ea395cd354bd790d49533d06ca717.tar.bz2 |
#5301: add image/vnd.microsoft.icon (.ico) MIME type
Diffstat (limited to 'Lib/mimetypes.py')
-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 2ef71f9..961e47f 100644 --- a/Lib/mimetypes.py +++ b/Lib/mimetypes.py @@ -425,6 +425,7 @@ def _default_mime_types(): '.hdf' : 'application/x-hdf', '.htm' : 'text/html', '.html' : 'text/html', + '.ico' : 'image/vnd.microsoft.icon', '.ief' : 'image/ief', '.jpe' : 'image/jpeg', '.jpeg' : 'image/jpeg', |