mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Issue #21768: fix type in test_pydoc, patch by Claudiu Popa.
This commit is contained in:
parent
0e6f52a211
commit
fe928de955
1 changed files with 1 additions and 1 deletions
|
@ -746,7 +746,7 @@ class TestDescriptions(unittest.TestCase):
|
||||||
try:
|
try:
|
||||||
pydoc.render_doc(name)
|
pydoc.render_doc(name)
|
||||||
except ImportError:
|
except ImportError:
|
||||||
self.fail('finding the doc of {!r} failed'.format(o))
|
self.fail('finding the doc of {!r} failed'.format(name))
|
||||||
|
|
||||||
for name in ('notbuiltins', 'strrr', 'strr.translate',
|
for name in ('notbuiltins', 'strrr', 'strr.translate',
|
||||||
'str.trrrranslate', 'builtins.strrr',
|
'str.trrrranslate', 'builtins.strrr',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue