changeset: 99116:808279e14700 branch: 3.5 parent: 99112:deb0fb601191 parent: 99115:92f989bfeca2 user: Martin Panter date: Fri Nov 13 23:10:39 2015 +0000 files: Lib/test/test_rlcompleter.py Misc/NEWS description: Issue #25590: Merge rlcompleter change from 3.4 into 3.5 diff -r deb0fb601191 -r 808279e14700 Lib/rlcompleter.py --- a/Lib/rlcompleter.py Fri Nov 13 22:12:58 2015 +0000 +++ b/Lib/rlcompleter.py Fri Nov 13 23:10:39 2015 +0000 @@ -136,20 +136,23 @@ 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): diff -r deb0fb601191 -r 808279e14700 Lib/test/test_rlcompleter.py --- a/Lib/test/test_rlcompleter.py Fri Nov 13 22:12:58 2015 +0000 +++ b/Lib/test/test_rlcompleter.py Fri Nov 13 23:10:39 2015 +0000 @@ -64,6 +64,19 @@ ['egg.{}('.format(x) for x in dir(str) if x.startswith('s')]) + def test_excessive_getattr(self): + # Ensure getattr() is invoked no more than once per attribute + class Foo: + calls = 0 + @property + def bar(self): + self.calls += 1 + return None + f = Foo() + completer = rlcompleter.Completer(dict(f=f)) + self.assertEqual(completer.complete('f.b', 0), 'f.bar') + self.assertEqual(f.calls, 1) + def test_complete(self): completer = rlcompleter.Completer() self.assertEqual(completer.complete('', 0), '\t') diff -r deb0fb601191 -r 808279e14700 Misc/NEWS --- a/Misc/NEWS Fri Nov 13 22:12:58 2015 +0000 +++ b/Misc/NEWS Fri Nov 13 23:10:39 2015 +0000 @@ -67,6 +67,9 @@ Library ------- +- Issue #25590: In the Readline completer, only call getattr() once per + attribute. + - Issue #25498: Fix a crash when garbage-collecting ctypes objects created by wrapping a memoryview. This was a regression made in 3.5a1. Based on patch by Eryksun.