summaryrefslogtreecommitdiffstats
path: root/Lib/rlcompleter.py
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2015-11-13 22:47:00 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2015-11-13 22:47:00 (GMT)
commitef2b2f437e7160ea68d8087df43c069fa6534fb0 (patch)
treec915d98d3993bab4a27ce6669dbf4835263dc5f7 /Lib/rlcompleter.py
parentc0fdd825c28127734bfd1ba615805b9e2696f103 (diff)
downloadcpython-ef2b2f437e7160ea68d8087df43c069fa6534fb0.zip
cpython-ef2b2f437e7160ea68d8087df43c069fa6534fb0.tar.gz
cpython-ef2b2f437e7160ea68d8087df43c069fa6534fb0.tar.bz2
Issue #25590: Make rlcompleter only call getattr() once per attribute
Previously it was called another time via hasattr(), and both calls were made once for dir(f) and again for dir(f.__class__). This includes a backport of changing from a list to a set from revision 4dbb315fe667.
Diffstat (limited to 'Lib/rlcompleter.py')
-rw-r--r--Lib/rlcompleter.py17
1 files changed, 10 insertions, 7 deletions
diff --git a/Lib/rlcompleter.py b/Lib/rlcompleter.py
index 6e4bd12..73f8d80 100644
--- a/Lib/rlcompleter.py
+++ b/Lib/rlcompleter.py
@@ -135,20 +135,23 @@ class Completer:
return []
# get the content of the object, except __builtins__
- words = dir(thisobject)
- if "__builtins__" in words:
- words.remove("__builtins__")
+ words = set(dir(thisobject))
+ words.discard("__builtins__")
if hasattr(thisobject, '__class__'):
- words.append('__class__')
- words.extend(get_class_members(thisobject.__class__))
+ words.add('__class__')
+ words.update(get_class_members(thisobject.__class__))
matches = []
n = len(attr)
for word in words:
- if word[:n] == attr and hasattr(thisobject, word):
- val = getattr(thisobject, word)
+ if word[:n] == attr:
+ try:
+ val = getattr(thisobject, word)
+ except Exception:
+ continue # Exclude properties that are not set
word = self._callable_postfix(val, "%s.%s" % (expr, word))
matches.append(word)
+ matches.sort()
return matches
def get_class_members(klass):