◐ Shell
clean mode source ↗

GH-127381: pathlib ABCs: remove `WritablePath.mkdir()` arguments by barneygale · Pull Request #130611 · python/cpython

Remove the *mode*, *parents* and *exist_ok* arguments from
`WritablePath.mkdir()`. These arguments imply support for POSIX permissions
and checking for preexistence of the path or its parents, but subclasses of
`WritablePath` may not have these capabilities.

@barneygale