diff options
| author | J. Goutin <JGoutin@users.noreply.github.com> | 2016-04-22 07:52:42 +0200 |
|---|---|---|
| committer | J. Goutin <JGoutin@users.noreply.github.com> | 2016-04-22 07:52:42 +0200 |
| commit | f9e6b8fd2d46a2a4efabffaf51151652ef06e55b (patch) | |
| tree | 0e8057759eefbbc217ae26f24fef070b6aa15533 /setuptools/msvc9_support.py | |
| parent | d8587a79301f6eba5334f9e365188b9a9af1d2ac (diff) | |
| download | python-setuptools-git-f9e6b8fd2d46a2a4efabffaf51151652ef06e55b.tar.gz | |
Fix six import
Diffstat (limited to 'setuptools/msvc9_support.py')
| -rw-r--r-- | setuptools/msvc9_support.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/setuptools/msvc9_support.py b/setuptools/msvc9_support.py index 38acc43f..58e34204 100644 --- a/setuptools/msvc9_support.py +++ b/setuptools/msvc9_support.py @@ -4,8 +4,7 @@ This module improve support for Microsoft Visual C++ compilers. (Windows Only) import os import itertools import distutils.errors -import six -import six.moves.winreg as winreg +from setuptools.extern.six.moves import winreg, filterfalse try: # Distutil file for MSVC++ 9.0 and upper (Python 2.7 to 3.4) @@ -1101,7 +1100,6 @@ class EnvironmentInfo: """ seen = set() seen_add = seen.add - filterfalse = six.moves.filterfalse if key is None: for element in filterfalse(seen.__contains__, iterable): seen_add(element) |
