Yield path objects of the directory contents. The children are yielded in arbitrary order, and the special entries '.' and '..' are not included.
(self)
| 317 | |
| 318 | @abstractmethod |
| 319 | def iterdir(self): |
| 320 | """Yield path objects of the directory contents. |
| 321 | |
| 322 | The children are yielded in arbitrary order, and the |
| 323 | special entries '.' and '..' are not included. |
| 324 | """ |
| 325 | raise NotImplementedError |
| 326 | |
| 327 | def glob(self, pattern, *, recurse_symlinks=True): |
| 328 | """Iterate over this subtree and yield all existing files (of any |
no outgoing calls
no test coverage detected