Home
last modified time | relevance | path

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

/third_party/python/Lib/
Dshutil.py62 class SameFileError(Error): class
234 raise SameFileError("{!r} and {!r} are the same file".format(src, dst))
/third_party/python/PC/layout/
Dmain.py444 except shutil.SameFileError:
/third_party/python/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
/third_party/python/Lib/test/
Dtest_shutil.py24 SameFileError, _GiveupOnFastCopy)
1208 self.assertRaises(shutil.SameFileError, shutil.copyfile, src, dst)
1228 self.assertRaises(shutil.SameFileError, shutil.copyfile, src, dst)
1269 self.assertRaises(SameFileError, shutil.copyfile, src_file, src_file)
/third_party/python/Misc/NEWS.d/
D3.5.0a1.rst1611 Add missing get_terminal_size and SameFileError to shutil.__all__.
/third_party/python/Doc/whatsnew/
D3.4.rst1363 :exc:`~shutil.SameFileError`, when the source and destination are the same
/third_party/python/Misc/
DHISTORY1167 - Issue #22665: Add missing get_terminal_size and SameFileError to
5779 - Issue #1492704: shutil.copyfile() raises a distinct SameFileError now if