(self, path)
| 197 | opened = set() |
| 198 | |
| 199 | def open_input_file(self, path): |
| 200 | path = localfs.normalize_path(str(path)) |
| 201 | opened.add(path) |
| 202 | return self._fs.open_input_file(path) |
| 203 | |
| 204 | # patch proxyhandler to log calls to open_input_file |
| 205 | monkeypatch.setattr(ProxyHandler, "open_input_file", open_input_file) |
nothing calls this directly
no test coverage detected