aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/tests
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-01-16 06:54:00 -0500
committerJason R. Coombs <jaraco@jaraco.com>2016-01-16 06:54:00 -0500
commit8af3b6ef5b4173a0d0d6735147c98c882ae98344 (patch)
tree18ccd57b03f7e00967f59a72d9ccd13172825b55 /setuptools/tests
parent0f590c0d72709128f32c23437fe0183386c69d1c (diff)
downloadexternal_python_setuptools-8af3b6ef5b4173a0d0d6735147c98c882ae98344.tar.gz
external_python_setuptools-8af3b6ef5b4173a0d0d6735147c98c882ae98344.tar.bz2
external_python_setuptools-8af3b6ef5b4173a0d0d6735147c98c882ae98344.zip
Always use Python 3 version of map
Diffstat (limited to 'setuptools/tests')
-rw-r--r--setuptools/tests/test_dist_info.py2
-rw-r--r--setuptools/tests/test_egg_info.py2
-rw-r--r--setuptools/tests/test_sdist.py1
3 files changed, 5 insertions, 0 deletions
diff --git a/setuptools/tests/test_dist_info.py b/setuptools/tests/test_dist_info.py
index 6d0ab587..abd0a763 100644
--- a/setuptools/tests/test_dist_info.py
+++ b/setuptools/tests/test_dist_info.py
@@ -4,6 +4,8 @@ import os
import shutil
import tempfile
+from setuptools.extern.six.moves import map
+
import pytest
import pkg_resources
diff --git a/setuptools/tests/test_egg_info.py b/setuptools/tests/test_egg_info.py
index 333d11d6..7d51585b 100644
--- a/setuptools/tests/test_egg_info.py
+++ b/setuptools/tests/test_egg_info.py
@@ -1,6 +1,8 @@
import os
import stat
+from setuptools.extern.six.moves import map
+
import pytest
from . import environment
diff --git a/setuptools/tests/test_sdist.py b/setuptools/tests/test_sdist.py
index 753b507d..d2a1f1bb 100644
--- a/setuptools/tests/test_sdist.py
+++ b/setuptools/tests/test_sdist.py
@@ -10,6 +10,7 @@ import contextlib
import io
from setuptools.extern import six
+from setuptools.extern.six.moves import map
import pytest