21 lines
552 B
Python
21 lines
552 B
Python
# mypy: allow-untyped-defs
|
|
"""List of Python standard library modules.
|
|
|
|
Sadly, there is no reliable way to tell whether a module is part of the
|
|
standard library except by comparing to a canonical list.
|
|
|
|
This is taken from https://github.com/PyCQA/isort/tree/develop/isort/stdlibs,
|
|
which itself is sourced from the Python documentation.
|
|
"""
|
|
|
|
import sys
|
|
|
|
|
|
def is_stdlib_module(module: str) -> bool:
|
|
base_module = module.partition(".")[0]
|
|
return base_module in _get_stdlib_modules()
|
|
|
|
|
|
def _get_stdlib_modules():
|
|
return sys.stdlib_module_names
|