]> granicus.if.org Git - python/commitdiff
Merged revisions 76042 via svnmerge from
authorTarek Ziadé <ziade.tarek@gmail.com>
Sun, 1 Nov 2009 22:38:44 +0000 (22:38 +0000)
committerTarek Ziadé <ziade.tarek@gmail.com>
Sun, 1 Nov 2009 22:38:44 +0000 (22:38 +0000)
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r76042 | tarek.ziade | 2009-11-01 23:33:45 +0100 (Sun, 01 Nov 2009) | 1 line

  fixed stdout alteration in test_distutils
........

Lib/distutils/tests/test_build_py.py
Lib/distutils/tests/test_util.py

index 582f24634ab43a06fee09aeec9634b4f9dbf6b7f..3e45f6e89e927dab87e9e7cecb360bb1d3994ead 100644 (file)
@@ -69,6 +69,7 @@ class BuildPyTestCase(support.TempdirManager,
         open(os.path.join(testdir, "testfile"), "w").close()
 
         os.chdir(sources)
+        old_stdout = sys.stdout
         sys.stdout = io.StringIO()
 
         try:
@@ -87,7 +88,7 @@ class BuildPyTestCase(support.TempdirManager,
         finally:
             # Restore state.
             os.chdir(cwd)
-            sys.stdout = sys.__stdout__
+            sys.stdout = old_stdout
 
     def test_dont_write_bytecode(self):
         # makes sure byte_compile is not used
index a2f8ed2b59333e53b105ae95057843ce158e1376..417247265840aea81a8a559aa26e2082508c5771 100644 (file)
@@ -60,6 +60,8 @@ class UtilTestCase(support.EnvironGuard, unittest.TestCase):
         util.find_executable = self._find_executable
         self._exes = {}
         self.old_popen = subprocess.Popen
+        self.old_stdout  = sys.stdout
+        self.old_stderr = sys.stderr
         FakePopen.test_class = self
         subprocess.Popen = FakePopen
 
@@ -79,6 +81,8 @@ class UtilTestCase(support.EnvironGuard, unittest.TestCase):
         sysconfig._config_vars = copy(self._config_vars)
         util.find_executable = self.old_find_executable
         subprocess.Popen = self.old_popen
+        sys.old_stdout  = self.old_stdout
+        sys.old_stderr = self.old_stderr
         super(UtilTestCase, self).tearDown()
 
     def _set_uname(self, uname):