Add __all__ to modules beginning with 'm' (#7330)

This commit is contained in:
Alex Waygood
2022-02-20 22:08:07 +00:00
committed by GitHub
parent 3e579b8b29
commit 07de01f29e
17 changed files with 193 additions and 33 deletions

View File

@@ -2,6 +2,22 @@ import sys
from _typeshed import StrPath
from typing import IO, Sequence
__all__ = [
"knownfiles",
"inited",
"MimeTypes",
"guess_type",
"guess_all_extensions",
"guess_extension",
"add_type",
"init",
"read_mime_types",
"suffix_map",
"encodings_map",
"types_map",
"common_types",
]
if sys.version_info >= (3, 8):
def guess_type(url: StrPath, strict: bool = ...) -> tuple[str | None, str | None]: ...