summaryrefslogtreecommitdiff
path: root/Lib/pydoc.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-04-21 21:11:13 +0300
committerSerhiy Storchaka <storchaka@gmail.com>2015-04-21 21:11:13 +0300
commitf5e8540e1bda85f041fc7ce592e3079c16f18a1b (patch)
tree9130a4249b59971b0e0210d2e8f326b3792a8646 /Lib/pydoc.py
parent273a720f876e754013e17fab0ab9b599284239f7 (diff)
parentb6076fb13c6bf97f4fae76da478a26e0f4f24879 (diff)
downloadcpython-git-f5e8540e1bda85f041fc7ce592e3079c16f18a1b.tar.gz
Issue #23008: Fixed resolving attributes with boolean value is False in pydoc.
Diffstat (limited to 'Lib/pydoc.py')
-rwxr-xr-xLib/pydoc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/pydoc.py b/Lib/pydoc.py
index 264e407e47..306dcafae0 100755
--- a/Lib/pydoc.py
+++ b/Lib/pydoc.py
@@ -1588,7 +1588,7 @@ def resolve(thing, forceload=0):
"""Given an object or a path to an object, get the object and its name."""
if isinstance(thing, str):
object = locate(thing, forceload)
- if not object:
+ if object is None:
raise ImportError('''\
No Python documentation found for %r.
Use help() to get the interactive help utility.