(self, name, path, path_finder)
| 1155 | # https://github.com/python/cpython/issues/92054 |
| 1156 | class NamespaceLoader: |
| 1157 | def __init__(self, name, path, path_finder): |
| 1158 | self._path = _NamespacePath(name, path, path_finder) |
| 1159 | |
| 1160 | def is_package(self, fullname): |
| 1161 | return True |
nothing calls this directly
no test coverage detected