Home | History | Annotate | Download | only in test

Lines Matching defs:module

1684     """Try import all public attributes from module into global namespace.
1693 module = __import__(module_name)
1696 warnings.warn("Failed to import module " + module_name)
1698 for attr in dir(module):
1706 globals()[attr] = getattr(module, attr)