comment'i çıkart

This commit is contained in:
Barış Metin
2005-07-01 12:17:34 +00:00
parent 02a23c8582
commit 7b9f670690
-5
View File
@@ -142,11 +142,6 @@ def copy_file(src,dest):
"""copy source file to destination file""" """copy source file to destination file"""
check_file(src) check_file(src)
check_dir(os.path.dirname(dest)) check_dir(os.path.dirname(dest))
#don't reinvent the wheel
# fs = file(src, 'rb')
# fd = file(dest, 'wb')
# for l in fs:
# fd.write(l)
shutil.copyfile(src, dest) shutil.copyfile(src, dest)
def get_file_hashes(top, excludePrefixes=None, removePrefix=None): def get_file_hashes(top, excludePrefixes=None, removePrefix=None):