Message185039
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 |
|
Date |
User |
Action |
Args |
2013-03-23 12:05:36 | fhamand | set | recipients:
+ fhamand, ggenellina, pitrou, ocean-city, tercero12 |
2013-03-23 12:05:36 | fhamand | set | messageid: <1364040336.06.0.391825148962.issue4969@psf.upfronthosting.co.za> |
2013-03-23 12:05:36 | fhamand | link | issue4969 messages |
2013-03-23 12:05:35 | fhamand | create | |
|