Issue #13025: mimetypes is now reading MIME types using the UTF-8 encoding,

instead of the locale encoding.
This commit is contained in:
Victor Stinner 2011-10-14 03:03:35 +02:00
parent c1f32ca0ad
commit 82ac9bcdb3
4 changed files with 1464 additions and 3 deletions

View file

@ -199,7 +199,7 @@ def read(self, filename, strict=True):
list of standard types, else to the list of non-standard
types.
"""
with open(filename) as fp:
with open(filename, encoding='utf-8') as fp:
self.readfp(fp, strict)
def readfp(self, fp, strict=True):

1445
Lib/test/mime.types Normal file

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,8 @@
import mimetypes
import io
import unittest
import locale
import mimetypes
import sys
import unittest
from test import support
@ -62,6 +63,18 @@ def test_guess_all_types(self):
all = self.db.guess_all_extensions('image/jpg', strict=True)
eq(all, [])
def test_encoding(self):
getpreferredencoding = locale.getpreferredencoding
self.addCleanup(setattr, locale, 'getpreferredencoding',
getpreferredencoding)
locale.getpreferredencoding = lambda: 'ascii'
filename = support.findfile("mime.types")
mimes = mimetypes.MimeTypes([filename])
exts = mimes.guess_all_extensions('application/vnd.geocube+xml',
strict=True)
self.assertEqual(exts, ['.g3', '.g\xb3'])
@unittest.skipUnless(sys.platform.startswith("win"), "Windows only")
class Win32MimeTypesTestCase(unittest.TestCase):

View file

@ -43,6 +43,9 @@ Core and Builtins
Library
-------
- Issue #13025: mimetypes is now reading MIME types using the UTF-8 encoding,
instead of the locale encoding.
- Issue #10653: On Windows, use strftime() instead of wcsftime() because
wcsftime() doesn't format time zone correctly.