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.

classification
Title: Regression in mimetypes for image/bmp
Type: behavior Stage: resolved
Components: Library (Lib) Versions: Python 3.10, Python 3.9, Python 3.8
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: andrei.avk, steve.dower, xpdseth
Priority: normal Keywords:

Created on 2020-10-13 21:15 by xpdseth, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 14375 xpdseth, 2020-10-13 21:15
Messages (3)
msg378577 - (view) Author: xpdseth (xpdseth) Date: 2020-10-13 21:15
Please check the following short examples of the issue:

Status: Downloaded newer image for python:3.7.4
Python 3.7.4 (default, Oct 17 2019, 05:59:21)
[GCC 8.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import mimetypes
>>> str(mimetypes.guess_extension('image/bmp'))
'.bmp'


Status: Downloaded newer image for python:3.7.5
Python 3.7.5 (default, Nov 23 2019, 05:59:34)
[GCC 8.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import mimetypes
>>> str(mimetypes.guess_extension('image/bmp'))
'None'
>>>

Status: Downloaded newer image for python:latest
Python 3.9.0 (default, Oct  6 2020, 21:52:53)
[GCC 8.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import mimetypes
>>> str(mimetypes.guess_extension('image/bmp'))
'None'


I believe the issue is introduced here by duplicating the bmp key in types_map/_types_map_default

'.bmp'    : 'image/bmp'
https://github.com/python/cpython/pull/14375/files#diff-aed43839a49bace08b60186baa4b27ad69ecd6b61f928bd696b4fb670750774fR490

 '.bmp'    : 'image/x-ms-bmp',
https://github.com/python/cpython/pull/14375/files#diff-aed43839a49bace08b60186baa4b27ad69ecd6b61f928bd696b4fb670750774fR502
msg378755 - (view) Author: Steve Dower (steve.dower) * (Python committer) Date: 2020-10-16 21:49
Yep, looks like the extra entry can just be removed. Guess we missed it in issue4963

Care to submit a PR?
msg398672 - (view) Author: Andrei Kulakov (andrei.avk) * (Python triager) Date: 2021-08-01 00:50
This was fixed in https://github.com/python/cpython/pull/26300
so the issue can be closed as fixed, and the PR can also be closed.
History
Date User Action Args
2022-04-11 14:59:36adminsetgithub: 86194
2022-01-15 17:42:47iritkatrielsetstatus: open -> closed
resolution: fixed
stage: resolved
2021-08-01 00:50:02andrei.avksetnosy: + andrei.avk
messages: + msg398672
2020-10-16 21:49:21steve.dowersetmessages: + msg378755
versions: + Python 3.10, - Python 3.7
2020-10-16 20:25:30rhettingersetnosy: + steve.dower
2020-10-13 21:15:02xpdsethcreate