summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2013-11-05 02:44:17 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2013-11-05 02:44:17 (GMT)
commitc1bd2fef8b542c9976a4b31cc3290dc93aaff794 (patch)
tree86de1f22edaaab55453f81378c87d962d644b047 /Lib
parent0eaa5ac9b5b47d4ae0e851a8652fdc6be7a15963 (diff)
parent5c8116407775343083a8e293510fbd30326f61c4 (diff)
downloadcpython-c1bd2fef8b542c9976a4b31cc3290dc93aaff794.zip
cpython-c1bd2fef8b542c9976a4b31cc3290dc93aaff794.tar.gz
cpython-c1bd2fef8b542c9976a4b31cc3290dc93aaff794.tar.bz2
Merge with 3.3
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_pydoc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_pydoc.py b/Lib/test/test_pydoc.py
index 2d101aa..cdf28a4 100644
--- a/Lib/test/test_pydoc.py
+++ b/Lib/test/test_pydoc.py
@@ -470,7 +470,7 @@ class PydocDocTest(unittest.TestCase):
def test_namedtuple_public_underscore(self):
NT = namedtuple('NT', ['abc', 'def'], rename=True)
with captured_stdout() as help_io:
- help(NT)
+ pydoc.help(NT)
helptext = help_io.getvalue()
self.assertIn('_1', helptext)
self.assertIn('_replace', helptext)