diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2014-10-30 22:15:25 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2014-10-30 22:15:25 (GMT) |
commit | c689101a5eed64923993d61c4fe46d794d1293f5 (patch) | |
tree | f9a6999d448440e17f818e593c935d779e93edf5 /Misc | |
parent | e075f1617f90ba4d6ce03ef6e5cc7947f0fd4beb (diff) | |
parent | 2b2852b1b4d5bfd006beb202c520c53db8be2901 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |