summaryrefslogtreecommitdiffstats
path: root/Lib/rlcompleter.py
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2015-11-13 23:10:39 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2015-11-13 23:10:39 (GMT)
commitfa9ea046732eff86408aba477d557c8fc92bc864 (patch)
treee7ab1537f108883827edc860d10b38203eb83773 /Lib/rlcompleter.py
parent75559affad77d929ab8a87da226f080ec7b59dbd (diff)
parent06622ead8072f3602bba8cd1924f0897873ad8b1 (diff)
downloadcpython-fa9ea046732eff86408aba477d557c8fc92bc864.zip
cpython-fa9ea046732eff86408aba477d557c8fc92bc864.tar.gz
cpython-fa9ea046732eff86408aba477d557c8fc92bc864.tar.bz2
Issue #25590: Merge rlcompleter change from 3.4 into 3.5
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 d517c0e..be8aee0 100644
--- a/Lib/rlcompleter.py
+++ b/Lib/rlcompleter.py
@@ -136,20 +136,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):