summaryrefslogtreecommitdiff
path: root/Lib/rlcompleter.py
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2015-11-13 23:54:02 +0000
committerMartin Panter <vadmium+py@gmail.com>2015-11-13 23:54:02 +0000
commit04d70b51387edb7b650b3542d818e52f2851a690 (patch)
tree672dce8c77605968befbb2f580f643f180b81900 /Lib/rlcompleter.py
parent99e74fdf527dbc7c1ac6d3f0ac47f9139380b2d7 (diff)
downloadcpython-04d70b51387edb7b650b3542d818e52f2851a690.tar.gz
Issue #25590: Complete attribute names even if they are not yet created
Diffstat (limited to 'Lib/rlcompleter.py')
-rw-r--r--Lib/rlcompleter.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/Lib/rlcompleter.py b/Lib/rlcompleter.py
index d368876b0c..02e1fa50cc 100644
--- a/Lib/rlcompleter.py
+++ b/Lib/rlcompleter.py
@@ -160,12 +160,14 @@ class Completer:
for word in words:
if (word[:n] == attr and
not (noprefix and word[:n+1] == noprefix)):
+ match = "%s.%s" % (expr, word)
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)
+ pass # Include even if attribute not set
+ else:
+ match = self._callable_postfix(val, match)
+ matches.append(match)
if matches or not noprefix:
break
if noprefix == '_':