summaryrefslogtreecommitdiff
path: root/Lib/pydoc.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-04-21 21:09:48 +0300
committerSerhiy Storchaka <storchaka@gmail.com>2015-04-21 21:09:48 +0300
commitb6076fb13c6bf97f4fae76da478a26e0f4f24879 (patch)
tree3dfc0c5ce941dc2650c86df3f2a7fc7844f2e1d9 /Lib/pydoc.py
parentd73aca769f1f6eebb46faa9161cbebe806db3659 (diff)
downloadcpython-git-b6076fb13c6bf97f4fae76da478a26e0f4f24879.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 faaa859535..0c7b60d98d 100755
--- a/Lib/pydoc.py
+++ b/Lib/pydoc.py
@@ -1590,7 +1590,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' % thing)
return object, thing
else: