summaryrefslogtreecommitdiff
path: root/Lib/pydoc.py
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2011-03-18 02:22:15 -0700
committerRaymond Hettinger <python@rcn.com>2011-03-18 02:22:15 -0700
commit484936effeb4b24c8cf1a4ca07d34e05503c0dae (patch)
treee49023fae5b1aacd0afe5ae88ec08b143bc11bbf /Lib/pydoc.py
parenta7c7d1c399ada57897e0ca880b78e79f5aedf67d (diff)
downloadcpython-484936effeb4b24c8cf1a4ca07d34e05503c0dae.tar.gz
Speed-up search for hidden names by using a set instead of a tuple.
Diffstat (limited to 'Lib/pydoc.py')
-rwxr-xr-xLib/pydoc.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/pydoc.py b/Lib/pydoc.py
index 9d3cdd5c9b..9f8f120c94 100755
--- a/Lib/pydoc.py
+++ b/Lib/pydoc.py
@@ -168,11 +168,11 @@ def _split_list(s, predicate):
def visiblename(name, all=None):
"""Decide whether to show documentation on a variable."""
# Certain special names are redundant.
- _hidden_names = ('__builtins__', '__doc__', '__file__', '__path__',
+ if name in {'__builtins__', '__doc__', '__file__', '__path__',
'__module__', '__name__', '__slots__', '__package__',
'__cached__', '__author__', '__credits__', '__date__',
- '__version__')
- if name in _hidden_names: return 0
+ '__version__'}:
+ return 0
# Private names are hidden, but special names are displayed.
if name.startswith('__') and name.endswith('__'): return 1
if all is not None: