diff -r 812ee8c0a91a -r 39e3db2b4936 eric6/DebugClients/Python/ModuleLoader.py --- a/eric6/DebugClients/Python/ModuleLoader.py Wed Jun 17 17:14:12 2020 +0200 +++ b/eric6/DebugClients/Python/ModuleLoader.py Sun Jul 05 11:11:24 2020 +0200 @@ -40,8 +40,8 @@ 'greenlet', 'subprocess', 'multiprocessing', - 'PyQt4.QtCore', 'PyQt5.QtCore', - 'PySide.QtCore', 'PySide2.QtCore', + 'PyQt5.QtCore', + 'PySide2.QtCore', ) sys.meta_path.insert(0, self) @@ -100,8 +100,7 @@ ## Add hook for *.QThread and *.QProcess elif ( - fullname in ('PyQt4.QtCore', 'PyQt5.QtCore', - 'PySide.QtCore', 'PySide2.QtCore') and + fullname in ('PyQt5.QtCore', 'PySide2.QtCore') and not hasattr(module, 'eric6_patched') ): module.eric6_patched = True