diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-03-22 19:59:46 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-03-22 19:59:46 (GMT) |
commit | 513d9aeadb09b460e968054c7ed78c385835dcd4 (patch) | |
tree | 2ae3b8b7bbee4f66bbe90bef91e9909e6716c580 /Misc | |
parent | 0805e6eed94015cee09ba052deda2e1c94c182b3 (diff) | |
download | cpython-513d9aeadb09b460e968054c7ed78c385835dcd4.zip cpython-513d9aeadb09b460e968054c7ed78c385835dcd4.tar.gz cpython-513d9aeadb09b460e968054c7ed78c385835dcd4.tar.bz2 |
Issue #7512: shutil.copystat() could raise an OSError when the filesystem
didn't support chflags() (for example ZFS under FreeBSD). The error is
now silenced.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -29,6 +29,10 @@ Core and Builtins Library ------- +- Issue #7512: shutil.copystat() could raise an OSError when the filesystem + didn't support chflags() (for example ZFS under FreeBSD). The error is + now silenced. + - Issue #7703: ctypes supports both buffer() and memoryview(). The former is deprecated. |