diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-06-30 03:53:19 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-06-30 03:53:19 (GMT) |
commit | 844315c7514dab785ce7d2e0912645f3fab9d306 (patch) | |
tree | ba54ce9daa8b518ada6ff461ae7d5c7eee3e4eac | |
parent | 609da58ae5f7b032bc3161d40e8131f17e509f1e (diff) | |
parent | 7f86811d55a7a15cb4f29f9fad458aecaf2161d3 (diff) | |
download | cpython-844315c7514dab785ce7d2e0912645f3fab9d306.zip cpython-844315c7514dab785ce7d2e0912645f3fab9d306.tar.gz cpython-844315c7514dab785ce7d2e0912645f3fab9d306.tar.bz2 |
merge heads
-rw-r--r-- | Lib/test/test_cprofile.py | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/Lib/test/test_cprofile.py b/Lib/test/test_cprofile.py index ae17c2b..5676668 100644 --- a/Lib/test/test_cprofile.py +++ b/Lib/test/test_cprofile.py @@ -18,16 +18,19 @@ class CProfileTest(ProfileTest): def test_bad_counter_during_dealloc(self): import _lsprof # Must use a file as StringIO doesn't trigger the bug. - with open(TESTFN, 'w') as file: - sys.stderr = file - try: - obj = _lsprof.Profiler(lambda: int) - obj.enable() - obj = _lsprof.Profiler(1) - obj.disable() - finally: - sys.stderr = sys.__stderr__ - unlink(TESTFN) + orig_stderr = sys.stderr + try: + with open(TESTFN, 'w') as file: + sys.stderr = file + try: + obj = _lsprof.Profiler(lambda: int) + obj.enable() + obj = _lsprof.Profiler(1) + obj.disable() + finally: + sys.stderr = orig_stderr + finally: + unlink(TESTFN) def test_main(): |