mirror of
https://github.com/python/cpython.git
synced 2024-11-25 19:03:49 +08:00
23cbd8a656
planned for the package. There are no docs yet, but they are coming once the API for the first new function, importlib.import_module() is finalized.
11 lines
186 B
Python
11 lines
186 B
Python
from test.support import run_unittest
|
|
import importlib.test
|
|
|
|
|
|
def test_main():
|
|
run_unittest(importlib.test.test_suite('importlib.test'))
|
|
|
|
|
|
if __name__ == '__main__':
|
|
test_main()
|