Home
last modified time | relevance | path

Searched refs:SameFileError (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython3/Lib/
Dshutil.py72 class SameFileError(Error): class
244 raise SameFileError("{!r} and {!r} are the same file".format(src, dst))
/external/python/cpython3/PC/layout/
Dmain.py453 except shutil.SameFileError:
/external/python/cpython3/Doc/library/
Dshutil.rst59 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/
Dtest_shutil.py24 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/
D3.5.0a1.rst1611 Add missing get_terminal_size and SameFileError to shutil.__all__.
/external/python/cpython3/Doc/whatsnew/
D3.4.rst1363 :exc:`~shutil.SameFileError`, when the source and destination are the same
/external/python/cpython3/Misc/
DHISTORY1167 - Issue #22665: Add missing get_terminal_size and SameFileError to
5779 - Issue #1492704: shutil.copyfile() raises a distinct SameFileError now if