summaryrefslogtreecommitdiff
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorBrian Curtin <brian.curtin@gmail.com>2010-11-24 20:24:31 +0000
committerBrian Curtin <brian.curtin@gmail.com>2010-11-24 20:24:31 +0000
commitbcf330c1be7c96ef3193363abed0f7e8245de737 (patch)
tree6463369b99bd3e004a5f1f07870b8d966f0b3f23 /Misc/NEWS
parentac08128c9f5311ab93e9ad055c4066acac18ebde (diff)
downloadcpython-bcf330c1be7c96ef3193363abed0f7e8245de737.tar.gz
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 'Misc/NEWS')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index fb61ac818d..6891d1ebec 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,8 @@ What's New in Python 3.2 Beta 1?
Core and Builtins
-----------------
+- Issue #8879. Add os.link support for Windows.
+
- Issue #10027. st_nlink was not being set on Windows calls to os.stat or
os.lstat. Patch by Hirokazu Yamamoto.