mirror of https://github.com/python/cpython
Simplify test.test_importlib.__main__
This commit is contained in:
parent
330f71b617
commit
2ce6c44ae4
|
@ -4,15 +4,6 @@ Specifying the ``--builtin`` flag will run tests, where applicable, with
|
|||
builtins.__import__ instead of importlib.__import__.
|
||||
|
||||
"""
|
||||
from . import test_main
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
import argparse
|
||||
|
||||
parser = argparse.ArgumentParser(description='Execute the importlib test '
|
||||
'suite')
|
||||
parser.add_argument('-b', '--builtin', action='store_true', default=False,
|
||||
help='use builtins.__import__() instead of importlib')
|
||||
args = parser.parse_args()
|
||||
from . import test_main
|
||||
test_main()
|
||||
|
|
Loading…
Reference in New Issue