示例#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
 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
    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)