--- a/eric6/DebugClients/Python/FlexCompleter.py Wed Jun 17 17:12:21 2020 +0200 +++ b/eric6/DebugClients/Python/FlexCompleter.py Wed Jun 17 20:18:54 2020 +0200 @@ -180,7 +180,7 @@ return [] expr, attr = m.group(1, 3) try: - thisobject = eval(expr, self.namespace) + thisobject = eval(expr, self.namespace) # secok except Exception: return [] @@ -206,7 +206,7 @@ match = "{0}.{1}".format(expr, word) try: val = getattr(thisobject, word) - except Exception: + except Exception: # secok pass # Include even if attribute not set else: match = self._callable_postfix(val, match)