--- a/DebugClients/Python3/DebugClientBase.py Sat Mar 12 15:44:24 2016 +0100 +++ b/DebugClients/Python3/DebugClientBase.py Sun Mar 13 12:48:53 2016 +0100 @@ -1972,13 +1972,14 @@ state = 0 try: comp = completer(text, state) + except Exception: comp = None while comp is not None: completions.add(comp) state += 1 try: comp = completer(text, state) - except: + except Exception: comp = None def startDebugger(self, filename=None, host=None, port=None,