Lines Matching refs:srcname
326 srcname = os.path.join(src, name)
329 if os.path.islink(srcname):
330 linkto = os.readlink(srcname)
336 copystat(srcname, dstname, follow_symlinks=not symlinks)
342 if os.path.isdir(srcname):
343 copytree(srcname, dstname, symlinks, ignore,
346 copy_function(srcname, dstname)
347 elif os.path.isdir(srcname):
348 copytree(srcname, dstname, symlinks, ignore, copy_function)
351 copy_function(srcname, dstname)
357 errors.append((srcname, dstname, str(why)))