diff options
author | Brian Curtin <brian.curtin@gmail.com> | 2010-11-24 20:24:31 (GMT) |
---|---|---|
committer | Brian Curtin <brian.curtin@gmail.com> | 2010-11-24 20:24:31 (GMT) |
commit | 1b9df3962088142300728724c485425a93eb5f2a (patch) | |
tree | 39ab274a95dec2ba74005f8baee2ba6354525aa5 /Doc | |
parent | f21c7ed39d026fea90d87a82290e677c6b4c5002 (diff) | |
download | cpython-1b9df3962088142300728724c485425a93eb5f2a.zip cpython-1b9df3962088142300728724c485425a93eb5f2a.tar.gz cpython-1b9df3962088142300728724c485425a93eb5f2a.tar.bz2 |
Fix #8879. Add os.link support to Windows.
Additionally, the st_ino attribute of stat structures was not being filled
in. This was left out of the fix to #10027 and was noticed due to
test_tarfile failing when applying the patch for this issue. An earlier
version of the fix to #10027 included st_ino, but that attribute got lost
in the shuffle of a few review/fix cycles. All tests pass.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/os.rst | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index cb9d9c4..b2c439c 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -1058,7 +1058,10 @@ Files and Directories Create a hard link pointing to *source* named *link_name*. - Availability: Unix. + Availability: Unix, Windows. + + .. versionchanged:: 3.2 + Added Windows support. .. function:: listdir(path='.') |