Skip to content

Commit

Permalink
bpo-41066: Update the comparison section for os vs pathlib (GH-21261)
Browse files Browse the repository at this point in the history
  • Loading branch information
srinivasreddy committed Aug 13, 2020
1 parent d3ded08 commit 0eb9deb
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Doc/library/pathlib.rst
Expand Up @@ -1196,9 +1196,12 @@ os and os.path pathlib
:func:`os.path.exists` :meth:`Path.exists`
:func:`os.path.expanduser` :meth:`Path.expanduser` and
:meth:`Path.home`
:func:`os.listdir` :meth:`Path.iterdir`
: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.link` :meth:`Path.link_to`
:func:`os.symlink` :meth:`Path.symlink_to`
:func:`os.readlink` :meth:`Path.readlink`
:func:`os.stat` :meth:`Path.stat`,
:meth:`Path.owner`,
Expand Down

0 comments on commit 0eb9deb

Please sign in to comment.