diff options
author | Brett Cannon <brett@python.org> | 2015-12-29 01:30:32 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2015-12-29 01:30:32 (GMT) |
commit | 01f7ac3bb07ccca254af27f046ef64f9f5641e05 (patch) | |
tree | 9b96d04b81dfe0f840ca38590e9a7113f888962b /Doc/library/os.rst | |
parent | e4d65e3aab980cd8c2347d71bc6e26c19227953b (diff) | |
download | cpython-01f7ac3bb07ccca254af27f046ef64f9f5641e05.zip cpython-01f7ac3bb07ccca254af27f046ef64f9f5641e05.tar.gz cpython-01f7ac3bb07ccca254af27f046ef64f9f5641e05.tar.bz2 |
Backport of fix for issue #25930
Diffstat (limited to 'Doc/library/os.rst')
-rw-r--r-- | Doc/library/os.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 0cc9d9c..144d9b2 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -1789,7 +1789,7 @@ features: 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 @@ features: .. 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. |