diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-08-01 16:22:05 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-08-01 16:22:05 -0400 |
commit | 477ee99aa7229bdce83ca80049359284c6332f2d (patch) | |
tree | 59d0f2fa610096eeb607ee4021507950705e76a5 /setuptools/tests/test_dist_info.py | |
parent | ffce5a1fb043e4b17666fca6919cd94fabb3536a (diff) | |
download | external_python_setuptools-477ee99aa7229bdce83ca80049359284c6332f2d.tar.gz external_python_setuptools-477ee99aa7229bdce83ca80049359284c6332f2d.tar.bz2 external_python_setuptools-477ee99aa7229bdce83ca80049359284c6332f2d.zip |
The future is here! (Fix test failures on Python 2.7 introduced in 8cc9cd3c76).
Diffstat (limited to 'setuptools/tests/test_dist_info.py')
-rw-r--r-- | setuptools/tests/test_dist_info.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/setuptools/tests/test_dist_info.py b/setuptools/tests/test_dist_info.py index 094a97ea..f7e7d2bf 100644 --- a/setuptools/tests/test_dist_info.py +++ b/setuptools/tests/test_dist_info.py @@ -1,5 +1,8 @@ """Test .dist-info style distributions. """ + +from __future__ import unicode_literals + from setuptools.extern.six.moves import map import pytest |