diff options
author | Joannah Nanjekye <33177550+nanjekyejoannah@users.noreply.github.com> | 2020-05-04 19:47:03 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-04 19:47:03 (GMT) |
commit | f25fb6ebfec894c01bc927c9aae7924ffc826d11 (patch) | |
tree | a92aabe441f2a6c69a79592b7de129050dc6efad /Doc/library/pathlib.rst | |
parent | 18f1c60a1625d341a905c7e07367c32c08f222df (diff) | |
download | cpython-f25fb6ebfec894c01bc927c9aae7924ffc826d11.zip cpython-f25fb6ebfec894c01bc927c9aae7924ffc826d11.tar.gz cpython-f25fb6ebfec894c01bc927c9aae7924ffc826d11.tar.bz2 |
bpo-39470: Indicate that ``os.makedirs`` is equivalent to ``Path.mkdir`` (GH-18216)
* Indicate os.makedirs is equivalent to Path.mkdir
* 📜🤖 Added by blurb_it.
* ignore news feed
Co-authored-by: nanjekyejoannah <joannah.nanjekye@ibm.com>
Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
Diffstat (limited to 'Doc/library/pathlib.rst')
-rw-r--r-- | Doc/library/pathlib.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Doc/library/pathlib.rst b/Doc/library/pathlib.rst index dead49b..83f7c83 100644 --- a/Doc/library/pathlib.rst +++ b/Doc/library/pathlib.rst @@ -1185,6 +1185,7 @@ os and os.path pathlib :func:`os.path.abspath` :meth:`Path.resolve` :func:`os.chmod` :meth:`Path.chmod` :func:`os.mkdir` :meth:`Path.mkdir` +:func:`os.makedirs` :meth:`Path.mkdir` :func:`os.rename` :meth:`Path.rename` :func:`os.replace` :meth:`Path.replace` :func:`os.rmdir` :meth:`Path.rmdir` |