diff -r 176145438b1e -r 422fd05e9c91 eric6/DebugClients/Python/DebugBase.py --- a/eric6/DebugClients/Python/DebugBase.py Thu Jun 25 19:09:55 2020 +0200 +++ b/eric6/DebugClients/Python/DebugBase.py Sat Jun 27 12:08:12 2020 +0200 @@ -797,7 +797,6 @@ if exctype in [SyntaxError, IndentationError]: try: - # tuple could only occure on Python 2, but not always! if type(excval) == tuple: message, details = excval filename, lineno, charno, text = details @@ -1021,6 +1020,3 @@ except AttributeError: # if frame is None return True - -# -# eflag: noqa = M702