summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2016-03-11 21:07:27 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2016-03-11 21:07:27 (GMT)
commit04d4229719055c9536da6d4b58033981ef86d0d2 (patch)
tree647b46ed6b971e472bfdce1d1538b4685cced106 /Misc
parentca0250a87805d7f1f52d04a9dffa0944b2f13278 (diff)
downloadcpython-04d4229719055c9536da6d4b58033981ef86d0d2.zip
cpython-04d4229719055c9536da6d4b58033981ef86d0d2.tar.gz
cpython-04d4229719055c9536da6d4b58033981ef86d0d2.tar.bz2
Issue #20589: Invoking Path.owner() and Path.group() on Windows now raise
NotImplementedError instead of ImportError.
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 b964181..3d9a787 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -91,6 +91,9 @@ Core and Builtins
Library
-------
+- Issue #20589: Invoking Path.owner() and Path.group() on Windows now raise
+ NotImplementedError instead of ImportError.
+
- Issue #26177: Fixed the keys() method for Canvas and Scrollbar widgets.
- Issue #15068: Got rid of excessive buffering in the fileinput module.