DebugClients/Python/ThreadExtension.py

changeset 5918
d89cd224dd1b
parent 5914
e44c04a89dbc
child 5949
22657f04f332
child 5965
b8d53f4149c8
diff -r ba1312abe858 -r d89cd224dd1b DebugClients/Python/ThreadExtension.py
--- a/DebugClients/Python/ThreadExtension.py	Sat Oct 21 15:11:21 2017 +0200
+++ b/DebugClients/Python/ThreadExtension.py	Sat Oct 21 15:13:56 2017 +0200
@@ -328,7 +328,7 @@
                     # intercept the thread creation by threading.Thread
                     self.run = lambda s=self, run=self.run: _bootstrap(s, run)
                     
-                    super(ThreadWrapper, self).__init__(*args, **kwargs)
+                    module.Thread.__init__(self, *args, **kwargs)
             
             module.Thread = ThreadWrapper
         

eric ide

mercurial