diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2014-07-05 15:00:26 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-07-05 15:00:26 -0400 |
commit | 508f0f5134f3f5e87f53b7773086c8ecb30c527e (patch) | |
tree | c88ecb259ef29450e9a8fdbe18cdc196540326e5 /setuptools/tests/test_easy_install.py | |
parent | c4ecbd1e58a3384a5ab730450fa5487e48b68721 (diff) | |
download | external_python_setuptools-508f0f5134f3f5e87f53b7773086c8ecb30c527e.tar.gz external_python_setuptools-508f0f5134f3f5e87f53b7773086c8ecb30c527e.tar.bz2 external_python_setuptools-508f0f5134f3f5e87f53b7773086c8ecb30c527e.zip |
next compatibility is no longer required
Diffstat (limited to 'setuptools/tests/test_easy_install.py')
-rw-r--r-- | setuptools/tests/test_easy_install.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/test_easy_install.py b/setuptools/tests/test_easy_install.py index 31802aa2..a4430953 100644 --- a/setuptools/tests/test_easy_install.py +++ b/setuptools/tests/test_easy_install.py @@ -12,7 +12,7 @@ import tarfile import logging import distutils.core -from setuptools.compat import StringIO, BytesIO, next, urlparse +from setuptools.compat import StringIO, BytesIO, urlparse from setuptools.sandbox import run_setup, SandboxViolation from setuptools.command.easy_install import ( easy_install, fix_jython_executable, get_script_args, nt_quote_arg) |