cpython/Lib/test/test_importlib/__main__.py
2013-11-08 13:35:34 -05:00

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