/external/python/cpython3/Doc/library/ |
D | shutil.rst | 102 platform; please see :func:`copystat` for more information. If 111 .. function:: copystat(src, dst, *, follow_symlinks=True) 114 flags from *src* to *dst*. On Linux, :func:`copystat` also copies the 120 refer to symbolic links, :func:`copystat` will operate on 133 ``True``, :func:`copystat` can modify the permission 137 ``True``, :func:`copystat` can modify the last access 141 ``True``, :func:`copystat` can modify the flags of 147 :func:`copystat` will copy everything it can. 148 :func:`copystat` never returns failure. 153 .. audit-event:: shutil.copystat src,dst shutil.copystat [all …]
|
/external/python/cpython2/Lib/ |
D | shutil.py | 107 def copystat(src, dst): function 145 copystat(src, dst) 214 copystat(src, dst)
|
/external/libchrome/mojo/public/tools/bindings/ |
D | mojom_types_downgrader.py | 60 shutil.copystat(path, tmp_mojo_file.name)
|
/external/python/cpython2/Doc/library/ |
D | shutil.rst | 68 .. function:: copystat(src, dst) 86 this is just :func:`shutil.copy` followed by :func:`copystat`. This is 104 are copied with :func:`copystat`, individual files are copied using 133 error. Copy permissions and times of directories using :func:`copystat`. 226 copystat(src, dst)
|
/external/python/setuptools/setuptools/ |
D | archive_util.py | 87 shutil.copystat(f, target)
|
/external/python/cpython3/Lib/ |
D | shutil.py | 338 def copystat(src, dst, *, follow_symlinks=True): function 436 copystat(src, dst, follow_symlinks=follow_symlinks) 483 copystat(srcobj, dstname, follow_symlinks=not symlinks) 507 copystat(src, dst)
|
/external/python/cpython3/Lib/test/ |
D | test_shutil.py | 888 shutil.copystat(src_link, dst_link, follow_symlinks=True) 891 shutil.copystat(src_link, dst_link, follow_symlinks=False) 903 shutil.copystat(src_link, dst, follow_symlinks=False) 929 shutil.copystat(file1, file2) 932 self.assertRaises(OSError, shutil.copystat, file1, file2) 997 shutil.copystat(src, dst) 998 shutil.copystat(srcro, dstro)
|
D | test_embed.py | 1146 shutil.copystat(self.test_exe, exec_copy)
|
/external/python/parse_type/tasks/_vendor/ |
D | path.py | 1349 copystat = shutil.copystat variable in Path
|
/external/python/cpython2/Lib/test/ |
D | test_shutil.py | 368 shutil.copystat(file1, file2) 371 self.assertRaises(OSError, shutil.copystat, file1, file2)
|
/external/python/pyfakefs/pyfakefs/tests/ |
D | fake_filesystem_shutil_test.py | 205 shutil.copystat(src_file, dst_file)
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7b1.rst | 329 shutil.copystat() could raise an OSError when the filesystem didn't support
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.8.0b1.rst | 875 :func:`shutil.copystat` now ignores :const:`errno.EINVAL` on 1069 In `shutil.copystat()`, first copy extended file attributes and then file
|
/external/icu/icu4c/source/i18n/ |
D | decNumber.cpp | 1468 uInt copystat=0; /* clean status */ in uprv_decNumberLog10() local 1472 decCopyFit(w, rhs, &aset, &residue, ©stat); /* copy & shorten */ in uprv_decNumberLog10() 1474 if (!(copystat&DEC_Inexact) && w->lsu[0]==1) { in uprv_decNumberLog10()
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.3.rst | 1799 * :func:`~shutil.copy2` and :func:`~shutil.copystat` now preserve file
|
/external/python/cpython2/Misc/ |
D | cheatsheet | 1541 (and also: copyfile, copymode, copystat, copy2)
|
/external/python/cpython3/Misc/ |
D | HISTORY | 6923 - Issue #15238: `shutil.copystat()` now copies Linux "extended attributes". 7670 - Issue #14127 and #10148: shutil.copystat now preserves exact mtime and atime 8890 (copyfile, copymode, copystat, copy, copy2). When that parameter is 13643 - Issue #7512: shutil.copystat() could raise an OSError when the filesystem
|