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 pitrou
Recipients pitrou, siona, terry.reedy
Date 2010-06-25.23:35:30
SpamBayes Score 0.00012473423
Marked as misclassified No
Message-id <1277508932.15.0.547493685107.issue4963@psf.upfronthosting.co.za>
In-reply-to
Content
Can't reproduce under Mandriva Linux:

>>> import mimetypes
>>> print(mimetypes.guess_extension('image/jpeg'))
.jpe
>>> mimetypes.init()
>>> print(mimetypes.guess_extension('image/jpeg'))
.jpe

The fact that it returns ".jpe" rather than ".jpg", however, could be a bug in itself (since the latter will really be expected by everyone, not the former).
History
Date User Action Args
2010-06-25 23:35:32pitrousetrecipients: + pitrou, terry.reedy, siona
2010-06-25 23:35:32pitrousetmessageid: <1277508932.15.0.547493685107.issue4963@psf.upfronthosting.co.za>
2010-06-25 23:35:31pitroulinkissue4963 messages
2010-06-25 23:35:30pitroucreate