summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_importlib/__main__.py
blob: 14bd5bc01722e2c4a16292ac2ae08f307a880be5 (plain)
1
2
3
4
5
6
7
8
9
"""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()