diff options
author | Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> | 2024-11-18 18:13:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-18 18:13:20 (GMT) |
commit | 933f21c3c92f758fb0615d6a4cca10249c686ae7 (patch) | |
tree | c0d9d0754db0502f2d0930bf9ea043312318de59 /Doc | |
parent | f7ef0203d44acb21ab1c5ff0c3e15f9727862760 (diff) | |
download | cpython-933f21c3c92f758fb0615d6a4cca10249c686ae7.zip cpython-933f21c3c92f758fb0615d6a4cca10249c686ae7.tar.gz cpython-933f21c3c92f758fb0615d6a4cca10249c686ae7.tar.bz2 |
gh-85957: Add missing MIME types for images with RFCs (#126966)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.14.rst | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.14.rst b/Doc/whatsnew/3.14.rst index 8196250..f2c357b 100644 --- a/Doc/whatsnew/3.14.rst +++ b/Doc/whatsnew/3.14.rst @@ -396,6 +396,17 @@ mimetypes (Contributed by Hugo van Kemenade in :gh:`89416`.) +* Add MIME types for images with RFCs: + + * :rfc:`1494`: CCITT Group 3 (``.g3``) + * :rfc:`3362`: Real-time Facsimile, T.38 (``.t38``) + * :rfc:`3745`: JPEG 2000 (``.jp2``), extension (``.jpx``) and compound (``.jpm``) + * :rfc:`3950`: Tag Image File Format Fax eXtended, TIFF-FX (``.tfx``) + * :rfc:`4047`: Flexible Image Transport System (``.fits``) + * :rfc:`7903`: Enhanced Metafile (``.emf``) and Windows Metafile (``.wmf``) + + (Contributed by Hugo van Kemenade in :gh:`85957`.) + multiprocessing --------------- |