diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2016-01-16 06:54:00 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-01-16 06:54:00 -0500 |
| commit | 8af3b6ef5b4173a0d0d6735147c98c882ae98344 (patch) | |
| tree | 18ccd57b03f7e00967f59a72d9ccd13172825b55 /pkg_resources/__init__.py | |
| parent | 0f590c0d72709128f32c23437fe0183386c69d1c (diff) | |
| download | python-setuptools-git-8af3b6ef5b4173a0d0d6735147c98c882ae98344.tar.gz | |
Always use Python 3 version of map
Diffstat (limited to 'pkg_resources/__init__.py')
| -rw-r--r-- | pkg_resources/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg_resources/__init__.py b/pkg_resources/__init__.py index 7becc951..8382571e 100644 --- a/pkg_resources/__init__.py +++ b/pkg_resources/__init__.py @@ -46,7 +46,7 @@ except ImportError: import imp as _imp from pkg_resources.extern import six -from pkg_resources.extern.six.moves import urllib +from pkg_resources.extern.six.moves import urllib, map # capture these to bypass sandboxing from os import utime |
