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: Duplicate '.bmp' key in mimetypes.py, maps to both 'image/bmp' and 'image/x-ms-bmp'
Type: behavior Stage: patch review
Components: Library (Lib) Versions: Python 3.11, Python 3.10, Python 3.9
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: andreasjansson, r.david.murray, serhiy.storchaka, steve.dower, terry.reedy
Priority: normal Keywords: patch

Created on 2021-05-21 21:13 by andreasjansson, last changed 2022-04-11 14:59 by admin.

Pull Requests
URL Status Linked Edit
PR 26300 merged andreasjansson, 2021-05-21 21:19
Messages (4)
msg394157 - (view) Author: Andreas Jansson (andreasjansson) * Date: 2021-05-21 21:13
The mime type of .bmp was changed from image/x-ms-bmp in https://github.com/python/cpython/pull/4756.

https://github.com/python/cpython/pull/3062 then re-introduced image/x-ms-bmp while keeping the newer image/bmp mapping.
msg394679 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2021-05-28 19:24
David and Steve merged the seemingly conflicting PRs.
msg401630 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2021-09-11 06:49
Since this change has a user-visible effect a NEWS entry is required. Just copy it from issue22589.
msg402038 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2021-09-17 11:37
It is not clear whether we want to backport this change.
History
Date User Action Args
2022-04-11 14:59:46adminsetgithub: 88377
2021-09-17 11:37:16serhiy.storchakasetmessages: + msg402038
2021-09-11 06:49:29serhiy.storchakasetnosy: + serhiy.storchaka
messages: + msg401630
2021-05-28 19:24:20terry.reedysetnosy: + terry.reedy, r.david.murray, steve.dower

messages: + msg394679
versions: + Python 3.11, - Python 3.8
2021-05-21 21:19:35andreasjanssonsetkeywords: + patch
stage: patch review
pull_requests: + pull_request24903
2021-05-21 21:13:08andreasjanssoncreate