We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bc0227 commit 4ed0e72Copy full SHA for 4ed0e72
Lib/pydoc.py
@@ -1746,7 +1746,8 @@ def resolve(thing, forceload=0):
1746
raise ImportError('''\
1747
No Python documentation found for %r.
1748
%sUse help() to get the interactive help utility.
1749
-Use help(str) for help on the str class.''' % (thing, special))
+Use help(str) for help on the str class.
1750
+Additional documentation is available online at https://docs.python.org/%s.%s/''' % (thing, special, *sys.version_info[:2]))
1751
return object, thing
1752
else:
1753
name = getattr(thing, '__name__', None)
0 commit comments