예제 #1
0
    def _build_namespace_module(self, modname, path):
        # pylint: disable=import-outside-toplevel; circular import
        from astroid.builder import build_namespace_package_module

        return build_namespace_package_module(modname, path)
예제 #2
0
파일: manager.py 프로젝트: Marslo/VimConfig
 def _build_namespace_module(self, modname, path):
     from astroid.builder import build_namespace_package_module
     return build_namespace_package_module(modname, path)
예제 #3
0
    def _build_namespace_module(self, modname, path):
        from astroid.builder import build_namespace_package_module

        return build_namespace_package_module(modname, path)
예제 #4
0
파일: manager.py 프로젝트: hippo91/astroid
    def _build_namespace_module(self, modname: str,
                                path: List[str]) -> "nodes.Module":
        # pylint: disable=import-outside-toplevel; circular import
        from astroid.builder import build_namespace_package_module

        return build_namespace_package_module(modname, path)