Remove this directory. The directory must be empty.
(self)
| 1496 | self._accessor.unlink(self) |
| 1497 | |
| 1498 | def rmdir(self): |
| 1499 | """ |
| 1500 | Remove this directory. The directory must be empty. |
| 1501 | """ |
| 1502 | if self._closed: |
| 1503 | self._raise_closed() |
| 1504 | self._accessor.rmdir(self) |
| 1505 | |
| 1506 | def lstat(self): |
| 1507 | """ |
nothing calls this directly
no test coverage detected