--- a/eric6/Debugger/Config.py Thu Jun 25 19:09:55 2020 +0200 +++ b/eric6/Debugger/Config.py Sat Jun 27 12:08:12 2020 +0200 @@ -11,8 +11,6 @@ from PyQt5.QtCore import QT_TRANSLATE_NOOP # Variables type definition -# Special case for Python 2: don't add 'instancemethod'. It's renamed to -# 'method' in DebugClientBase.py to be identical to Python 3 ConfigVarTypeDispStrings = { '__': QT_TRANSLATE_NOOP('Variable Types', 'Hidden Attributes'), 'NoneType': QT_TRANSLATE_NOOP('Variable Types', 'None'), @@ -61,7 +59,7 @@ 'float': 6, 'complex': 7, 'str': 8, - 'unicode': 9, + 'unicode': 9, # Not used anymore but keep to avoid reassignment 'tuple': 10, 'list': 11, 'dict': 12,