summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2016-09-17 12:49:59 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2016-09-17 12:49:59 (GMT)
commit0b4dc4846b603025ee8da4403e87cad7739ac8f7 (patch)
tree263840dab088cf253ad63b2e670a3195a079734a /Misc
parent6d57fe1c23430d0d51de243a177670b76c37dab5 (diff)
downloadcpython-0b4dc4846b603025ee8da4403e87cad7739ac8f7.zip
cpython-0b4dc4846b603025ee8da4403e87cad7739ac8f7.tar.gz
cpython-0b4dc4846b603025ee8da4403e87cad7739ac8f7.tar.bz2
Issue #28075: Check for ERROR_ACCESS_DENIED in Windows implementation of os.stat()
Patch by Eryk Sun.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f7fe181..8fbdd22 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -71,6 +71,9 @@ Core and Builtins
Library
-------
+- Issue #28075: Check for ERROR_ACCESS_DENIED in Windows implementation of
+ os.stat(). Patch by Eryk Sun.
+
- Issue #25270: Prevent codecs.escape_encode() from raising SystemError when
an empty bytestring is passed.