Issue #16316: mimetypes now recognizes the .xz and .txz (.tar.xz) extensions.

Patch by Serhiy Storchaka.
This commit is contained in:
Nadeem Vawda 2012-10-28 14:52:34 +01:00
parent 27ddb576f1
commit 84833aa7b4
3 changed files with 7 additions and 0 deletions

View file

@ -378,12 +378,14 @@ def _default_mime_types():
'.taz': '.tar.gz',
'.tz': '.tar.gz',
'.tbz2': '.tar.bz2',
'.txz': '.tar.xz',
}
encodings_map = {
'.gz': 'gzip',
'.Z': 'compress',
'.bz2': 'bzip2',
'.xz': 'xz',
}
# Before adding new types, make sure they are either registered with IANA,