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 fhamand
Recipients fhamand, ggenellina, ocean-city, pitrou, tercero12
Date 2013-03-23.12:05:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1364040336.06.0.391825148962.issue4969@psf.upfronthosting.co.za>
In-reply-to
Content
From msg172531 in issue10551:

"You see, "MIME\Database\Content Type" in the Windows registry is a mime type -> file extension mapping, *not the other way around*. But read_windows_registry() tries to use it as a file extension -> mime type mapping, and bad things happen, because there are multiple mime types for certain file extensions."

This "enhancement" has basically broken the mimetypes module on windows,

e.g. On my system (windows 7 64 bit, python 3.3)
>>> mimetypes.guess_type('foo.png')
('image/x-png', None)
>>> mimetypes.guess_type('foo.jpg')
('image/pjpeg', None)

The expected results are image/png and image/jpeg

I'm having to work around this by calling mimetypes.init(files=[]) immediately after importing mimetypes to prevent it reading from the registry
History
Date User Action Args
2013-03-23 12:05:36fhamandsetrecipients: + fhamand, ggenellina, pitrou, ocean-city, tercero12
2013-03-23 12:05:36fhamandsetmessageid: <1364040336.06.0.391825148962.issue4969@psf.upfronthosting.co.za>
2013-03-23 12:05:36fhamandlinkissue4969 messages
2013-03-23 12:05:35fhamandcreate