Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
gh-132054 Add application/yaml to mimetypes
  • Loading branch information
Kristinita committed Apr 3, 2025
commit 5e0f103d86be13356cf5575bae537d750fe1ee94
2 changes: 2 additions & 0 deletions Lib/mimetypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -544,6 +544,8 @@ def _default_mime_types():
'.rdf' : 'application/xml',
'.wsdl' : 'application/xml',
'.xpdl' : 'application/xml',
'.yaml' : 'application/yaml',
'.yml' : 'application/yaml',
'.zip' : 'application/zip',
'.3gp' : 'audio/3gpp',
'.3gpp' : 'audio/3gpp',
Expand Down
2 changes: 2 additions & 0 deletions Lib/test/test_mimetypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,8 @@ def check_extensions():
("application/x-texinfo", ".texi"),
("application/x-troff", ".roff"),
("application/xml", ".xsl"),
("application/yaml", ".yaml"),
("application/yaml", ".yml"),
("audio/flac", ".flac"),
("audio/matroska", ".mka"),
("audio/mp4", ".m4a"),
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Mime type ``application/yaml`` is now supported by :mod:`mimetypes`.
Comment thread
AA-Turner marked this conversation as resolved.
Outdated
Loading