| D | shutil.py | 450 def _copytree(entries, src, dst, symlinks, ignore, copy_function, argument 459 use_srcentry = copy_function is copy2 or copy_function is copy 490 copy_function, dirs_exist_ok=dirs_exist_ok) 492 copy_function(srcobj, dstname) 494 copytree(srcobj, dstname, symlinks, ignore, copy_function, 498 copy_function(srcobj, dstname) 515 def copytree(src, dst, symlinks=False, ignore=None, copy_function=copy2, argument 557 ignore=ignore, copy_function=copy_function, 763 def move(src, dst, copy_function=copy2): argument 821 copytree(src, real_dst, copy_function=copy_function, [all …]
|