diff options
author | Hynek Schlawack <hs@ox.cx> | 2012-10-28 12:59:27 (GMT) |
---|---|---|
committer | Hynek Schlawack <hs@ox.cx> | 2012-10-28 12:59:27 (GMT) |
commit | 27ddb576f163f732a89111e3e66c2d8d5e43e9e8 (patch) | |
tree | c32898476fd1230c34dd2d0404fc9858154dc708 /Doc | |
parent | 5887959091081bf0ec19b84c5360e3cf97b7111f (diff) | |
download | cpython-27ddb576f163f732a89111e3e66c2d8d5e43e9e8.zip cpython-27ddb576f163f732a89111e3e66c2d8d5e43e9e8.tar.gz cpython-27ddb576f163f732a89111e3e66c2d8d5e43e9e8.tar.bz2 |
#1492704: Ensure and document backward compatibility of the change
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/shutil.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/shutil.rst b/Doc/library/shutil.rst index ec8cad2..b2efcbd 100644 --- a/Doc/library/shutil.rst +++ b/Doc/library/shutil.rst @@ -70,7 +70,8 @@ Directory and files operations Now returns *dst*. .. versionchanged:: 3.4 - Raise :exc:`SameFileError` instead of :exc:`Error`. + Raise :exc:`SameFileError` instead of :exc:`Error`. Since the former is + a subclass of the latter, this change is backward compatible. .. exception:: SameFileError |