This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Dominik Czarnota
Recipients Dominik Czarnota
Date 2019-07-09.14:03:11
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1562680991.22.0.452097518735.issue37529@roundup.psfhosted.org>
In-reply-to
Content
To be more specific and to keep this information historically, the .bmp registers two mimetypes - 'image/bmp' and 'image/x-ms-bmp'.

Below a part of the relevant code.
```
    types_map = _types_map_default = {
        # (...)
        '.bmp'    : 'image/bmp',
        '.gif'    : 'image/gif',
        '.ief'    : 'image/ief',
        '.jpg'    : 'image/jpeg',
        '.jpe'    : 'image/jpeg',
        '.jpeg'   : 'image/jpeg',
        '.png'    : 'image/png',
        '.svg'    : 'image/svg+xml',
        '.tiff'   : 'image/tiff',
        '.tif'    : 'image/tiff',
        '.ico'    : 'image/vnd.microsoft.icon',
        '.ras'    : 'image/x-cmu-raster',
        '.bmp'    : 'image/x-ms-bmp',
```
History
Date User Action Args
2019-07-09 14:03:11Dominik Czarnotasetrecipients: + Dominik Czarnota
2019-07-09 14:03:11Dominik Czarnotasetmessageid: <1562680991.22.0.452097518735.issue37529@roundup.psfhosted.org>
2019-07-09 14:03:11Dominik Czarnotalinkissue37529 messages
2019-07-09 14:03:11Dominik Czarnotacreate