bpo-32021: Support brotli .br encoding in mimetypes (#12200)

Add support for brotli encoding in the encoding_map.
This commit is contained in:
Philip McMahon 2020-01-12 22:31:49 +00:00 committed by Abhilash Raj
parent 61b14151cc
commit b2b4a51f74
2 changed files with 2 additions and 0 deletions

View File

@ -401,6 +401,7 @@ def _default_mime_types():
'.Z': 'compress',
'.bz2': 'bzip2',
'.xz': 'xz',
'.br': 'br',
}
# Before adding new types, make sure they are either registered with IANA,

View File

@ -0,0 +1 @@
Include brotli .br encoding in mimetypes encodings_map