コード例 #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
ファイル: manager.py プロジェクト: AnthonyW90/remindir
    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)