Simplify test.test_importlib.__main__

This commit is contained in:
Brett Cannon 2013-11-08 13:35:34 -05:00
parent 330f71b617
commit 2ce6c44ae4
1 changed files with 1 additions and 10 deletions

View File

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