summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2014-10-30 22:15:25 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2014-10-30 22:15:25 (GMT)
commitc689101a5eed64923993d61c4fe46d794d1293f5 (patch)
treef9a6999d448440e17f818e593c935d779e93edf5 /Misc
parente075f1617f90ba4d6ce03ef6e5cc7947f0fd4beb (diff)
parent2b2852b1b4d5bfd006beb202c520c53db8be2901 (diff)
downloadcpython-c689101a5eed64923993d61c4fe46d794d1293f5.zip
cpython-c689101a5eed64923993d61c4fe46d794d1293f5.tar.gz
cpython-c689101a5eed64923993d61c4fe46d794d1293f5.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')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 17db1fc..76fdd8d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -180,6 +180,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.