summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2014-10-30 22:14:03 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2014-10-30 22:14:03 (GMT)
commit2b2852b1b4d5bfd006beb202c520c53db8be2901 (patch)
tree1bb22472015e8dafea7e0cec43dec125930f4746 /Misc/NEWS
parent35903c809f85de1532c2df4f82550e079a3711a7 (diff)
downloadcpython-2b2852b1b4d5bfd006beb202c520c53db8be2901.zip
cpython-2b2852b1b4d5bfd006beb202c520c53db8be2901.tar.gz
cpython-2b2852b1b4d5bfd006beb202c520c53db8be2901.tar.bz2
Issue #22759: Query methods on pathlib.Path() (exists(), is_dir(), etc.) now return False when the underlying stat call raises NotADirectoryError.
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 6245bd0..e47b4ef 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -33,6 +33,9 @@ Core and Builtins
Library
-------
+- Issue #22759: Query methods on pathlib.Path() (exists(), is_dir(), etc.)
+ now return False when the underlying stat call raises NotADirectoryError.
+
- Issue #8876: distutils now falls back to copying files when hard linking
doesn't work. This allows use with special filesystems such as VirtualBox
shared folders.