Changed PyQt5 to PyQt6. eric7

Wed, 09 Jun 2021 17:48:22 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Wed, 09 Jun 2021 17:48:22 +0200
branch
eric7
changeset 8416
1b8e456475a1
parent 8415
c6236bed1b50
child 8417
87583a31cb8f

Changed PyQt5 to PyQt6.

eric7/DebugClients/Python/DebugClientBase.py file | annotate | diff | comparison | revisions
--- 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":

eric ide

mercurial