Skip to content

gh-115075: Clarify docs for types_map and types_map_inv on mimetypes.MimeTypes #136761

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
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
4 changes: 2 additions & 2 deletions Doc/library/mimetypes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -232,15 +232,15 @@ than one MIME-type database; it provides an interface similar to the one of the
Tuple containing two dictionaries, mapping filename extensions to MIME types:
the first dictionary is for the non-standards types and the second one is for
the standard types. They are initialized by :data:`common_types` and
:data:`types_map`.
:data:`types_map`, or by :func:`init` calls.


.. attribute:: MimeTypes.types_map_inv

Tuple containing two dictionaries, mapping MIME types to a list of filename
extensions: the first dictionary is for the non-standards types and the
second one is for the standard types. They are initialized by
:data:`common_types` and :data:`types_map`.
:data:`common_types` and :data:`types_map`, or by :func:`init` calls.


.. method:: MimeTypes.guess_extension(type, strict=True)
Expand Down
Loading