diff options
author | Sandro Tosi <sandro.tosi@gmail.com> | 2011-08-20 22:15:56 (GMT) |
---|---|---|
committer | Sandro Tosi <sandro.tosi@gmail.com> | 2011-08-20 22:15:56 (GMT) |
commit | a75039ad884fd82ea62c5ad48ed5d43810a96e91 (patch) | |
tree | 3197900814e5ba7ab073b56846ddcfd35f6fcdba | |
parent | b384356b9bc48aa31f36f312cc5789dec442f860 (diff) | |
download | cpython-a75039ad884fd82ea62c5ad48ed5d43810a96e91.zip cpython-a75039ad884fd82ea62c5ad48ed5d43810a96e91.tar.gz cpython-a75039ad884fd82ea62c5ad48ed5d43810a96e91.tar.bz2 |
#5301: add image/vnd.microsoft.icon (.ico) MIME type
-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 4c054c9..8347786 100644 --- a/Lib/mimetypes.py +++ b/Lib/mimetypes.py @@ -432,6 +432,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', |