summaryrefslogtreecommitdiff
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorBrian Curtin <brian.curtin@gmail.com>2010-11-24 13:14:05 +0000
committerBrian Curtin <brian.curtin@gmail.com>2010-11-24 13:14:05 +0000
commite3a4fe1ae5952f0e6ee172d72ca3c0cc97858ad2 (patch)
tree0ec647aa7fd44e179699394de2f226b73e0c1f3b /Misc/NEWS
parent34772824b37b109b2fc5a083d3d2d0f71a500ee3 (diff)
downloadcpython-e3a4fe1ae5952f0e6ee172d72ca3c0cc97858ad2.tar.gz
Fix #10027. st_nlink not set on Windows calls to os.stat/lstat.
Note: This patch has no tests because as of now there is no way to create links. #8879 adds that and the tests will go in there. I've manually observed that existing links on my system function properly with this.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 5a8497ee8b..fb61ac818d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.2 Beta 1?
Core and Builtins
-----------------
+- Issue #10027. st_nlink was not being set on Windows calls to os.stat or
+ os.lstat. Patch by Hirokazu Yamamoto.
+
- Issue #10474: range().count() should return integers.
- Issue #10255: Fix reference leak in Py_InitializeEx(). Patch by Neil