]> granicus.if.org Git - python/commitdiff
Merged revisions 80837 via svnmerge from
authorTarek Ziadé <ziade.tarek@gmail.com>
Wed, 5 May 2010 22:43:04 +0000 (22:43 +0000)
committerTarek Ziadé <ziade.tarek@gmail.com>
Wed, 5 May 2010 22:43:04 +0000 (22:43 +0000)
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r80837 | tarek.ziade | 2010-05-06 00:41:25 +0200 (Thu, 06 May 2010) | 1 line

  removed non needed lines
........

Lib/shutil.py

index 74a4db8735198636b9827923d3ccd7a6a671b314..44c8ac37a204e3c5d12441241c10f07d459fe7b8 100644 (file)
@@ -84,8 +84,6 @@ def copyfile(src, dst):
     if _samefile(src, dst):
         raise Error("`%s` and `%s` are the same file" % (src, dst))
 
-    fsrc = None
-    fdst = None
     for fn in [src, dst]:
         try:
             st = os.stat(fn)
@@ -96,6 +94,7 @@ def copyfile(src, dst):
             # XXX What about other special files? (sockets, devices...)
             if stat.S_ISFIFO(st.st_mode):
                 raise SpecialFileError("`%s` is a named pipe" % fn)
+
     with open(src, 'rb') as fsrc:
         with open(dst, 'wb') as fdst:
             copyfileobj(fsrc, fdst)