commit | c1de4ccad7907939b78c8e9e7de248d20c7840ee | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Mon Nov 03 21:29:09 2008 +0000 |
committer | Benjamin Peterson <benjamin@python.org> | Mon Nov 03 21:29:09 2008 +0000 |
tree | fd2a8482dae7bc0a54d44e63013bd733b495eb88 | |
parent | c0747cf537ca474307fc1bac8203e296e1c52834 [diff] [blame] |
fix test_descr
diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py index 0e1f7c3..735c9f0 100644 --- a/Lib/test/test_descr.py +++ b/Lib/test/test_descr.py
@@ -1020,7 +1020,7 @@ def __del__(self_): self.assertEqual(self_.a, 1) self.assertEqual(self_.b, 2) - with test_support.captured_output('stderr') as s: + with support.captured_output('stderr') as s: h = H() del h self.assertEqual(s.getvalue(), '')