aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/__init__.py
diff options
context:
space:
mode:
authorstepshal <nessento@openmailbox.org>2016-07-21 09:37:34 +0700
committerstepshal <nessento@openmailbox.org>2016-07-21 09:37:34 +0700
commit39bf3155d47c0024240be414a611dcb6d549f53c (patch)
tree373f653d4aec874e2aa3b2a9bc7c77f8526ceb89 /setuptools/__init__.py
parent966e2fa4118277ed4551aa2215ac6ebac34b37e5 (diff)
downloadexternal_python_setuptools-39bf3155d47c0024240be414a611dcb6d549f53c.tar.gz
external_python_setuptools-39bf3155d47c0024240be414a611dcb6d549f53c.tar.bz2
external_python_setuptools-39bf3155d47c0024240be414a611dcb6d549f53c.zip
Add missing blank lines after class or function definition.
Diffstat (limited to 'setuptools/__init__.py')
-rw-r--r--setuptools/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/setuptools/__init__.py b/setuptools/__init__.py
index 2523ccc7..cf0c39f2 100644
--- a/setuptools/__init__.py
+++ b/setuptools/__init__.py
@@ -116,6 +116,7 @@ class PEP420PackageFinder(PackageFinder):
def _looks_like_package(path):
return True
+
find_packages = PackageFinder.find
setup = distutils.core.setup
@@ -141,6 +142,7 @@ class Command(_Command):
vars(cmd).update(kw)
return cmd
+
# we can't patch distutils.cmd, alas
distutils.core.Command = Command