Files
cpython/Lib/test/test_importlib/__main__.py
2020-11-03 11:10:27 -07:00

10 lines
234 B
Python

"""Run importlib's test suite.
Specifying the ``--builtin`` flag will run tests, where applicable, with
builtins.__import__ instead of importlib.__import__.
"""
if __name__ == '__main__':
from . import test_main
test_main()