commit | 4286138e7b06e5dd2cb1e8ebf12f768d018be3c2 | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Thu Mar 06 07:43:02 2008 +0000 |
committer | Georg Brandl <georg@python.org> | Thu Mar 06 07:43:02 2008 +0000 |
tree | d79a7facc567dda6f4aa78e3085f9bdcb5715618 | |
parent | a7bd27f0a8dd7acbf0098f50d28ed9783fdce605 [diff] |
#2220: handle matching failure more gracefully.
diff --git a/Lib/rlcompleter.py b/Lib/rlcompleter.py index dab0cb9..a2d5fe6 100644 --- a/Lib/rlcompleter.py +++ b/Lib/rlcompleter.py
@@ -125,7 +125,7 @@ import re m = re.match(r"(\w+(\.\w+)*)\.(\w*)", text) if not m: - return + return [] expr, attr = m.group(1, 3) object = eval(expr, self.namespace) words = dir(object)