MCPcopy
hub / github.com/cool-RR/PySnooper / rmdir

Method rmdir

tests/mini_toolbox/pathlib.py:1498–1504  ·  view source on GitHub ↗

Remove this directory. The directory must be empty.

(self)

Source from the content-addressed store, hash-verified

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 """

Callers

nothing calls this directly

Calls 1

_raise_closedMethod · 0.95

Tested by

no test coverage detected