summaryrefslogtreecommitdiffstats
path: root/Doc/library/pathlib.rst
diff options
context:
space:
mode:
authorXtreak <tirkarthi@users.noreply.github.com>2018-10-05 15:24:11 (GMT)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-10-05 15:24:11 (GMT)
commit6f9c55d1c0bb399911ded00bb6b3e6f43a514ea2 (patch)
treefa820d732535f017f5521df794edd6a4e6cbf2c6 /Doc/library/pathlib.rst
parent07fbbfde1b300369b4f8d1cfb80045fbb23b7091 (diff)
downloadcpython-6f9c55d1c0bb399911ded00bb6b3e6f43a514ea2.zip
cpython-6f9c55d1c0bb399911ded00bb6b3e6f43a514ea2.tar.gz
cpython-6f9c55d1c0bb399911ded00bb6b3e6f43a514ea2.tar.bz2
bpo-34825: Add more entries to os to pathlib reference table (GH-9608)
The added functions are as below : | os module | Pathlib | | ------------- | ------------- | | os.chmod | Path.chmod | | os.mkdir | Path.mkdir | | os.rename | Path.rename | | os.replace | Path.replace | | os.rmdir | Path.rmdir | | os.remove, os.unlink | Path.unlink | | os.path.samefile | Path.samefile | Thanks https://bugs.python.org/issue34825
Diffstat (limited to 'Doc/library/pathlib.rst')
-rw-r--r--Doc/library/pathlib.rst47
1 files changed, 27 insertions, 20 deletions
diff --git a/Doc/library/pathlib.rst b/Doc/library/pathlib.rst
index fc19300..6aebe97 100644
--- a/Doc/library/pathlib.rst
+++ b/Doc/library/pathlib.rst
@@ -1095,23 +1095,30 @@ Below is a table mapping various :mod:`os` functions to their corresponding
overlapping use-cases, their semantics differ enough to warrant not
considering them equivalent.
-============================ ==============================
-os and os.path pathlib
-============================ ==============================
-:func:`os.path.abspath` :meth:`Path.resolve`
-:func:`os.getcwd` :func:`Path.cwd`
-:func:`os.path.exists` :meth:`Path.exists`
-:func:`os.path.expanduser` :meth:`Path.expanduser` and
- :meth:`Path.home`
-:func:`os.path.isdir` :meth:`Path.is_dir`
-:func:`os.path.isfile` :meth:`Path.is_file`
-:func:`os.path.islink` :meth:`Path.is_symlink`
-:func:`os.stat` :meth:`Path.stat`,
- :meth:`Path.owner`,
- :meth:`Path.group`
-:func:`os.path.isabs` :meth:`PurePath.is_absolute`
-:func:`os.path.join` :func:`PurePath.joinpath`
-:func:`os.path.basename` :data:`PurePath.name`
-:func:`os.path.dirname` :data:`PurePath.parent`
-:func:`os.path.splitext` :data:`PurePath.suffix`
-============================ ==============================
+==================================== ==============================
+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.rename` :meth:`Path.rename`
+:func:`os.replace` :meth:`Path.replace`
+:func:`os.rmdir` :meth:`Path.rmdir`
+:func:`os.remove`, :func:`os.unlink` :meth:`Path.unlink`
+:func:`os.getcwd` :func:`Path.cwd`
+:func:`os.path.exists` :meth:`Path.exists`
+:func:`os.path.expanduser` :meth:`Path.expanduser` and
+ :meth:`Path.home`
+:func:`os.path.isdir` :meth:`Path.is_dir`
+:func:`os.path.isfile` :meth:`Path.is_file`
+:func:`os.path.islink` :meth:`Path.is_symlink`
+:func:`os.stat` :meth:`Path.stat`,
+ :meth:`Path.owner`,
+ :meth:`Path.group`
+:func:`os.path.isabs` :meth:`PurePath.is_absolute`
+:func:`os.path.join` :func:`PurePath.joinpath`
+:func:`os.path.basename` :data:`PurePath.name`
+:func:`os.path.dirname` :data:`PurePath.parent`
+:func:`os.path.samefile` :meth:`Path.samefile`
+:func:`os.path.splitext` :data:`PurePath.suffix`
+==================================== ==============================