Open wimglenn opened 2 years ago
In Python-3.10+ there is sys.stdlib_module_names which might be useful for this app.
sys.stdlib_module_names
There are currently some discrepancies:
>>> from isort.stdlibs.py310 import stdlib >>> from sys import stdlib_module_names >>> len(stdlib ^ stdlib_module_names) 94
@wimglenn Thanks for pointing this out! I'll surely have a look.
In Python-3.10+ there is
sys.stdlib_module_names
which might be useful for this app.There are currently some discrepancies: