Home
last modified time | relevance | path

Searched refs:the_module (Results 1 – 2 of 2) sorted by relevance

/third_party/python/Lib/unittest/
Dloader.py302 the_module = sys.modules[start_dir]
306 os.path.dirname((the_module.__file__)))
310 spec = the_module.__spec__
318 for path in the_module.__path__:
323 (path.split(the_module.__name__
328 elif the_module.__name__ in sys.builtin_module_names:
335 .format(the_module)) from None
/third_party/python/Lib/test/libregrtest/
Druntest.py254 def _test_module(the_module): argument
256 tests = loader.loadTestsFromModule(the_module)
280 the_module = importlib.import_module(abstest)
287 test_runner = getattr(the_module, "test_main", None)
289 test_runner = functools.partial(_test_module, the_module)