aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2014-02-05 21:13:05 -0500
committerJason R. Coombs <jaraco@jaraco.com>2014-02-05 21:13:05 -0500
commit92bed83a85874a95faa052b3ffab4f7cbf65c94c (patch)
treea1483871e2ebf32881ff071f6c5bfef9d5de2a17
parent23c24bd67e7f2f2d5d53f9d0b09302dce21ef0b4 (diff)
downloadexternal_python_setuptools-92bed83a85874a95faa052b3ffab4f7cbf65c94c.tar.gz
external_python_setuptools-92bed83a85874a95faa052b3ffab4f7cbf65c94c.tar.bz2
external_python_setuptools-92bed83a85874a95faa052b3ffab4f7cbf65c94c.zip
Update global reference.
-rw-r--r--setuptools/tests/test_easy_install.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/tests/test_easy_install.py b/setuptools/tests/test_easy_install.py
index 8c797d55..38ee83ea 100644
--- a/setuptools/tests/test_easy_install.py
+++ b/setuptools/tests/test_easy_install.py
@@ -450,8 +450,8 @@ def quiet_context():
old_stdout = sys.stdout
old_stderr = sys.stderr
- new_stdout = sys.stdout = StringIO.StringIO()
- new_stderr = sys.stderr = StringIO.StringIO()
+ new_stdout = sys.stdout = StringIO()
+ new_stderr = sys.stderr = StringIO()
try:
yield new_stdout, new_stderr
finally: