mirror of
https://github.com/python/cpython.git
synced 2025-07-23 11:15:24 +00:00
9 lines
234 B
Python
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()
|