diff options
author | Brian Curtin <brian.curtin@gmail.com> | 2010-07-09 15:15:09 (GMT) |
---|---|---|
committer | Brian Curtin <brian.curtin@gmail.com> | 2010-07-09 15:15:09 (GMT) |
commit | c739569be09d4b271ae8a5d3d566254db6298c55 (patch) | |
tree | 89d18aadbcb80ad735b175f89bae2b5ec4750816 /Doc/library/os.path.rst | |
parent | 16633fa497caec98c5aa86afb99fb4e9c27f3b62 (diff) | |
download | cpython-c739569be09d4b271ae8a5d3d566254db6298c55.zip cpython-c739569be09d4b271ae8a5d3d566254db6298c55.tar.gz cpython-c739569be09d4b271ae8a5d3d566254db6298c55.tar.bz2 |
Adding versionchanged to the various Windows os.symlink additions, along
with a few minor touchups.
Diffstat (limited to 'Doc/library/os.path.rst')
-rw-r--r-- | Doc/library/os.path.rst | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Doc/library/os.path.rst b/Doc/library/os.path.rst index 7fcb2a9..b7d1a0a 100644 --- a/Doc/library/os.path.rst +++ b/Doc/library/os.path.rst @@ -236,11 +236,13 @@ applications should use string objects to access all files. exception if a :func:`os.stat` call on either pathname fails. On Windows, two files are the same if they resolve to the same final path - name using the Windows API call GetFinalPathNameByHandle and this function + name using the Windows API call GetFinalPathNameByHandle. This function raises an exception if handles cannot be obtained to either file. Availability: Windows, Unix. + .. versionchanged:: 3.2 Added Windows support + .. function:: sameopenfile(fp1, fp2) |