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