Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c1bd2fe

Browse files
committed
Merge with 3.3
2 parents 0eaa5ac + 5c81164 commit c1bd2fe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/test/test_pydoc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ def test_help_output_redirect(self):
470470
def test_namedtuple_public_underscore(self):
471471
NT = namedtuple('NT', ['abc', 'def'], rename=True)
472472
with captured_stdout() as help_io:
473-
help(NT)
473+
pydoc.help(NT)
474474
helptext = help_io.getvalue()
475475
self.assertIn('_1', helptext)
476476
self.assertIn('_replace', helptext)

0 commit comments

Comments
 (0)