(self, dir_entry, path_str)
| 1019 | yield path_str |
| 1020 | |
| 1021 | def _from_dir_entry(self, dir_entry, path_str): |
| 1022 | path = self.with_segments(path_str) |
| 1023 | path._str = path_str |
| 1024 | path._info = _Info(dir_entry.path, dir_entry) |
| 1025 | return path |
| 1026 | |
| 1027 | def iterdir(self): |
| 1028 | """Yield path objects of the directory contents. |
no test coverage detected