mirror of
https://github.com/izzy2lost/cpython.git
synced 2026-03-10 11:29:24 -07:00
10 lines
234 B
Python
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()
|