]> granicus.if.org Git - python/commitdiff
Backout 265d369ad3b9.
authorGeorg Brandl <georg@python.org>
Mon, 4 Nov 2013 06:43:41 +0000 (07:43 +0100)
committerGeorg Brandl <georg@python.org>
Mon, 4 Nov 2013 06:43:41 +0000 (07:43 +0100)
Lib/distutils/command/build_py.py

index d48eb69900ec8e90a8e8882742b2cf223501b9bb..1371b3d6ff90b7060412ae1e68d34809d00aff5e 100644 (file)
@@ -127,8 +127,7 @@ class build_py (Command):
             # Each pattern has to be converted to a platform-specific path
             filelist = glob(os.path.join(src_dir, convert_path(pattern)))
             # Files that match more than one pattern are only added once
-            files.extend([fn for fn in filelist if fn not in files
-                and os.path.isfile(fn)])
+            files.extend([fn for fn in filelist if fn not in files])
         return files
 
     def build_package_data(self):