(self, dir_entry, path_str)
| 821 | yield path_str |
| 822 | |
| 823 | def _from_dir_entry(self, dir_entry, path_str): |
| 824 | path = self.with_segments(path_str) |
| 825 | path._str = path_str |
| 826 | path._info = DirEntryInfo(dir_entry) |
| 827 | return path |
| 828 | |
| 829 | def iterdir(self): |
| 830 | """Yield path objects of the directory contents. |
no test coverage detected