Searched refs:SameFileError (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython3/Lib/ |
D | shutil.py | 72 class SameFileError(Error): class 244 raise SameFileError("{!r} and {!r} are the same file".format(src, dst))
|
/external/python/cpython3/PC/layout/ |
D | main.py | 453 except shutil.SameFileError:
|
/external/python/cpython3/Doc/library/ |
D | shutil.rst | 59 specify the same file, :exc:`SameFileError` is raised. 78 Raise :exc:`SameFileError` instead of :exc:`Error`. Since the former is 86 .. exception:: SameFileError
|
/external/python/cpython3/Lib/test/ |
D | test_shutil.py | 24 SameFileError, _GiveupOnFastCopy) 1179 self.assertRaises(shutil.SameFileError, shutil.copyfile, src, dst) 1199 self.assertRaises(shutil.SameFileError, shutil.copyfile, src, dst) 1238 self.assertRaises(SameFileError, shutil.copyfile, src_file, src_file)
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.5.0a1.rst | 1611 Add missing get_terminal_size and SameFileError to shutil.__all__.
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.4.rst | 1363 :exc:`~shutil.SameFileError`, when the source and destination are the same
|
/external/python/cpython3/Misc/ |
D | HISTORY | 1167 - Issue #22665: Add missing get_terminal_size and SameFileError to 5779 - Issue #1492704: shutil.copyfile() raises a distinct SameFileError now if
|