summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2013-02-20 00:54:50 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2013-02-20 00:54:50 (GMT)
commit1758d9cf8ee837219452b04965f833904cc124bb (patch)
tree3b9344b7df582b6b14a20969adaa695be2da5f5e /Lib/test
parent87632f1a9ec1dd310df1b0addc4c8842d83828bf (diff)
parent5a9ce077e0f59c34032f194e3ee0e4849b269c77 (diff)
downloadcpython-1758d9cf8ee837219452b04965f833904cc124bb.zip
cpython-1758d9cf8ee837219452b04965f833904cc124bb.tar.gz
cpython-1758d9cf8ee837219452b04965f833904cc124bb.tar.bz2
#17143: merge with 3.3.
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_trace.py11
1 files changed, 6 insertions, 5 deletions
diff --git a/Lib/test/test_trace.py b/Lib/test/test_trace.py
index b2cd728..1cec710 100644
--- a/Lib/test/test_trace.py
+++ b/Lib/test/test_trace.py
@@ -3,7 +3,6 @@ import io
import sys
from test.support import (run_unittest, TESTFN, rmtree, unlink,
captured_stdout)
-import tempfile
import unittest
import trace
@@ -396,14 +395,16 @@ class TestDeprecatedMethods(unittest.TestCase):
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():