aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools
diff options
context:
space:
mode:
authorstepshal <nessento@openmailbox.org>2016-07-21 10:23:29 +0700
committerstepshal <nessento@openmailbox.org>2016-07-21 14:57:44 +0700
commit789462de79c5f51ba24256d80ad2dac2e4fe2888 (patch)
treeebc9d23347484686865bb6dd72dccf7147047c43 /setuptools
parentfd3ff004cd3570460a079de785846f54ae1ee36f (diff)
downloadexternal_python_setuptools-789462de79c5f51ba24256d80ad2dac2e4fe2888.tar.gz
external_python_setuptools-789462de79c5f51ba24256d80ad2dac2e4fe2888.tar.bz2
external_python_setuptools-789462de79c5f51ba24256d80ad2dac2e4fe2888.zip
Add missing blank line.
Diffstat (limited to 'setuptools')
-rw-r--r--setuptools/lib2to3_ex.py1
-rw-r--r--setuptools/msvc.py1
-rw-r--r--setuptools/tests/test_bdist_egg.py2
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',