--- a/eric7/DebugClients/Python/DebugClientBase.py Wed Jun 09 17:48:02 2021 +0200 +++ b/eric7/DebugClients/Python/DebugClientBase.py Wed Jun 09 17:48:22 2021 +0200 @@ -1842,10 +1842,10 @@ continue else: isQt = False - # valtypestr, e.g. class 'PyQt5.QtCore.QPoint' + # valtypestr, e.g. class 'PyQt6.QtCore.QPoint' valtypestr = str(type(value))[1:-1] _, valtype = valtypestr.split(' ', 1) - # valtype, e.g. PyQt5.QtCore.QPoint + # valtype, e.g. PyQt6.QtCore.QPoint valtype = valtype[1:-1] # Strip 'instance' to be equal with Python 3 if valtype == "instancemethod":