[Python-checkins] cpython (3.5): Backport of fix for issue #25930

brett.cannon python-checkins at python.org
Mon Dec 28 20:31:01 EST 2015


https://hg.python.org/cpython/rev/9f13322eba8e
changeset:   99710:9f13322eba8e
branch:      3.5
parent:      99697:33b428ef34b9
user:        Brett Cannon <brett at python.org>
date:        Mon Dec 28 17:30:32 2015 -0800
summary:
  Backport of fix for issue #25930

files:
  Doc/library/os.rst |  10 +++++-----
  1 files changed, 5 insertions(+), 5 deletions(-)


diff --git a/Doc/library/os.rst b/Doc/library/os.rst
--- a/Doc/library/os.rst
+++ b/Doc/library/os.rst
@@ -1789,7 +1789,7 @@
    be raised; on Unix, the directory entry is removed but the storage allocated
    to the file is not made available until the original file is no longer in use.
 
-   This function is identical to :func:`unlink`.
+   This function is semantically identical to :func:`unlink`.
 
    .. versionadded:: 3.3
       The *dir_fd* argument.
@@ -2452,10 +2452,10 @@
 
 .. function:: unlink(path, *, dir_fd=None)
 
-   Remove (delete) the file *path*.  This function is identical to
-   :func:`remove`; the ``unlink`` name is its traditional Unix
-   name.  Please see the documentation for :func:`remove` for
-   further information.
+   Remove (delete) the file *path*.  This function is semantically
+   identical to :func:`remove`; the ``unlink`` name is its
+   traditional Unix name.  Please see the documentation for
+   :func:`remove` for further information.
 
    .. versionadded:: 3.3
       The *dir_fd* parameter.

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list