summaryrefslogtreecommitdiff
path: root/Lib/shutil.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/shutil.py')
-rw-r--r--Lib/shutil.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/shutil.py b/Lib/shutil.py
index dfde236136..1ba58da78d 100644
--- a/Lib/shutil.py
+++ b/Lib/shutil.py
@@ -17,7 +17,7 @@ def copyfileobj(fsrc, fdst, length=16*1024):
break
fdst.write(buf)
-
+
def copyfile(src, dst):
"""Copy data from src to dst"""
fsrc = None
@@ -48,7 +48,7 @@ def copystat(src, dst):
def copy(src, dst):
"""Copy data and mode bits ("cp src dst").
-
+
The destination may be a directory.
"""