summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_descr.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-11-03 21:29:09 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-11-03 21:29:09 (GMT)
commitc1de4ccad7907939b78c8e9e7de248d20c7840ee (patch)
treefd2a8482dae7bc0a54d44e63013bd733b495eb88 /Lib/test/test_descr.py
parentc0747cf537ca474307fc1bac8203e296e1c52834 (diff)
downloadcpython-c1de4ccad7907939b78c8e9e7de248d20c7840ee.zip
cpython-c1de4ccad7907939b78c8e9e7de248d20c7840ee.tar.gz
cpython-c1de4ccad7907939b78c8e9e7de248d20c7840ee.tar.bz2
fix test_descr
Diffstat (limited to 'Lib/test/test_descr.py')
-rw-r--r--Lib/test/test_descr.py2
1 files changed, 1 insertions, 1 deletions
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 @@ order (MRO) for bases """
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(), '')