eric6/DebugClients/Python/ModuleLoader.py

branch
multi_processing
changeset 7646
39e3db2b4936
parent 7563
b0d6b63f2843
child 7887
c1588f5a83e9
--- 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

eric ide

mercurial