diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-07-21 07:45:30 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-21 07:45:30 -0400 |
commit | 0c26459e6e97edc02afe43e71297a41e85cc261c (patch) | |
tree | 18bbb1b682eb5dbbbb05b6e2db1603fee2718927 | |
parent | 734b2dc9edc07e5cde14d11beb957e8602238bd8 (diff) | |
parent | 789462de79c5f51ba24256d80ad2dac2e4fe2888 (diff) | |
download | external_python_setuptools-0c26459e6e97edc02afe43e71297a41e85cc261c.tar.gz external_python_setuptools-0c26459e6e97edc02afe43e71297a41e85cc261c.tar.bz2 external_python_setuptools-0c26459e6e97edc02afe43e71297a41e85cc261c.zip |
Merge pull request #664 from stepshal/blank_line
Add missing blank line.
-rw-r--r-- | setuptools/lib2to3_ex.py | 1 | ||||
-rw-r--r-- | setuptools/msvc.py | 1 | ||||
-rw-r--r-- | setuptools/tests/test_bdist_egg.py | 2 |
3 files changed, 4 insertions, 0 deletions
diff --git a/setuptools/lib2to3_ex.py b/setuptools/lib2to3_ex.py index 467e57d2..c8632bc5 100644 --- a/setuptools/lib2to3_ex.py +++ b/setuptools/lib2to3_ex.py @@ -10,6 +10,7 @@ This module raises an ImportError on Python 2. from distutils.util import Mixin2to3 as _Mixin2to3 from distutils import log from lib2to3.refactor import RefactoringTool, get_fixers_from_package + import setuptools diff --git a/setuptools/msvc.py b/setuptools/msvc.py index 012ab32c..2a665c92 100644 --- a/setuptools/msvc.py +++ b/setuptools/msvc.py @@ -5,6 +5,7 @@ import os import platform import itertools import distutils.errors + from setuptools.extern.six.moves import filterfalse if platform.system() == 'Windows': diff --git a/setuptools/tests/test_bdist_egg.py b/setuptools/tests/test_bdist_egg.py index 5aabf404..c77aa226 100644 --- a/setuptools/tests/test_bdist_egg.py +++ b/setuptools/tests/test_bdist_egg.py @@ -9,6 +9,7 @@ from setuptools.dist import Distribution from . import contexts + SETUP_PY = """\ from setuptools import setup @@ -27,6 +28,7 @@ def setup_context(tmpdir): class Test: + def test_bdist_egg(self, setup_context, user_override): dist = Distribution(dict( script_name='setup.py', |