[Python-checkins] cpython (3.3): #17143: fix buildbot failures on Windows.

ezio.melotti python-checkins at python.org
Wed Feb 20 01:55:06 CET 2013


http://hg.python.org/cpython/rev/662f97427acf
changeset:   82269:662f97427acf
branch:      3.3
parent:      82266:b21f955b8ba2
user:        Ezio Melotti <ezio.melotti at gmail.com>
date:        Wed Feb 20 02:52:49 2013 +0200
summary:
  #17143: fix buildbot failures on Windows.

files:
  Lib/test/test_trace.py |  11 ++++++-----
  1 files changed, 6 insertions(+), 5 deletions(-)


diff --git a/Lib/test/test_trace.py b/Lib/test/test_trace.py
--- a/Lib/test/test_trace.py
+++ b/Lib/test/test_trace.py
@@ -3,7 +3,6 @@
 import sys
 from test.support import (run_unittest, TESTFN, rmtree, unlink,
                                captured_stdout)
-import tempfile
 import unittest
 
 import trace
@@ -396,14 +395,16 @@
             trace.find_lines(foo.__code__, ["eggs"])
 
     def test_deprecated_find_strings(self):
+        with open(TESTFN, 'w') as fd:
+            self.addCleanup(unlink, TESTFN)
         with self.assertWarns(DeprecationWarning):
-            with tempfile.NamedTemporaryFile() as fd:
-                trace.find_strings(fd.name)
+            trace.find_strings(fd.name)
 
     def test_deprecated_find_executable_linenos(self):
+        with open(TESTFN, 'w') as fd:
+            self.addCleanup(unlink, TESTFN)
         with self.assertWarns(DeprecationWarning):
-            with tempfile.NamedTemporaryFile() as fd:
-                trace.find_executable_linenos(fd.name)
+            trace.find_executable_linenos(fd.name)
 
 
 def test_main():

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list