(self, name, path, path_finder)
| 1145 | # https://github.com/python/cpython/issues/92054 |
| 1146 | class NamespaceLoader: |
| 1147 | def __init__(self, name, path, path_finder): |
| 1148 | self._path = NamespacePath(name, path, path_finder) |
| 1149 | |
| 1150 | def is_package(self, fullname): |
| 1151 | return True |
nothing calls this directly
no test coverage detected