diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2015-08-30 11:16:34 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2015-08-30 11:16:34 -0400 |
commit | 29b422607f3083b9ffebba57fc255f45a20353f3 (patch) | |
tree | b5a6f4c0e96a038730d6000a5885edca74cc4ab3 /setuptools/__init__.py | |
parent | 028ae1a595c08c581fff6ff52883d2719d8f8160 (diff) | |
download | external_python_setuptools-29b422607f3083b9ffebba57fc255f45a20353f3.tar.gz external_python_setuptools-29b422607f3083b9ffebba57fc255f45a20353f3.tar.bz2 external_python_setuptools-29b422607f3083b9ffebba57fc255f45a20353f3.zip |
Prefer preceding line comments
Diffstat (limited to 'setuptools/__init__.py')
-rw-r--r-- | setuptools/__init__.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/setuptools/__init__.py b/setuptools/__init__.py index 9e76ae11..9bbc06bb 100644 --- a/setuptools/__init__.py +++ b/setuptools/__init__.py @@ -135,7 +135,8 @@ class Command(_Command): vars(cmd).update(kw) return cmd -distutils.core.Command = Command # we can't patch distutils.cmd, alas +# we can't patch distutils.cmd, alas +distutils.core.Command = Command def findall(dir = os.curdir): """Find all files under 'dir' and return the list of full filenames @@ -150,4 +151,5 @@ def findall(dir = os.curdir): all_files.extend(filter(os.path.isfile, files)) return all_files -distutils.filelist.findall = findall # fix findall bug in distutils. +# fix findall bug in distutils. +distutils.filelist.findall = findall |