Staging
v0.8.1
https://github.com/python/cpython
Raw File
Tip revision: 8cee0cc3fea74f9abcb0ce343a86fa4c71673ead authored by Ned Deily on 06 September 2017, 07:23:33 UTC
Bump to 3.3.7rc1
Tip revision: 8cee0cc
__init__.py
from .. import test_suite
import os


def test_suite():
    directory = os.path.dirname(__file__)
    return test_suite('importlib.test.builtin', directory)


if __name__ == '__main__':
    from test.support import run_unittest
    run_unittest(test_suite())
back to top