diff options
| author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2012-10-10 09:39:21 +0100 |
|---|---|---|
| committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2012-10-10 09:39:21 +0100 |
| commit | f90390265dd5b7934ff62e3fe4a11994877dad47 (patch) | |
| tree | c67aa7187fb668f209d6c15dd0b5918781cbf4b6 /setuptools/tests/test_test.py | |
| parent | 882487293d776c6f0cb0c377795e209e383cf74f (diff) | |
| download | python-setuptools-bitbucket-f90390265dd5b7934ff62e3fe4a11994877dad47.tar.gz | |
Post-merge fixes for Python 3.
Diffstat (limited to 'setuptools/tests/test_test.py')
| -rw-r--r-- | setuptools/tests/test_test.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/tests/test_test.py b/setuptools/tests/test_test.py index ad7cbd0f..e7022995 100644 --- a/setuptools/tests/test_test.py +++ b/setuptools/tests/test_test.py @@ -6,9 +6,9 @@ import sys import os, shutil, tempfile, unittest import tempfile import site -from StringIO import StringIO from distutils.errors import DistutilsError +from setuptools.compat import StringIO from setuptools.command.test import test from setuptools.command import easy_install as easy_install_pkg from setuptools.dist import Distribution @@ -121,4 +121,4 @@ class TestTestTest(unittest.TestCase): pass finally: sys.stdout = old_stdout -
\ No newline at end of file + |
