cpython/Lib/test/test_importlib/__main__.py

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()