New submission from milahu <mil...@gmail.com>:
deprecated mimetype? per rfc4329, the technical term is "unregistered media type" https://datatracker.ietf.org/doc/html/rfc4329#section-3 related https://stackoverflow.com/a/9664327/10440128 https://github.com/danny0838/PyWebScrapBook/issues/53 quick fix ```py # python/Lib/mimetypes.py class MimeTypes: # ... def guess_type(self, url, strict=True): # ... if ext in _types_map_default: # prefer the python-internal values over /etc/mime.types return _types_map_default[ext], encoding if ext in types_map: return types_map[ext], encoding ``` why is `application/x-javascript` returned? on linux, mimetypes.init() loads /etc/mime.types source: https://mirrors.kernel.org/gentoo/distfiles/mime-types-9.tar.bz2 /etc/mime.types is sorted by alphabet, so ``` cat /etc/mime.types | grep javascript application/javascript js application/x-javascript js ``` apparently, the last entry application/x-javascript will overwrite the previous entry application/javascript ---------- components: Library (Lib) messages: 408197 nosy: milahu priority: normal severity: normal status: open title: mimetypes.guess_type returns deprecated mimetype application/x-javascript type: behavior versions: Python 3.11 _______________________________________ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue46035> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com