Reverted changeset d89cd224dd1b because the 'fix' cause more trouble than it fixes. maintenance

Thu, 09 Nov 2017 18:31:34 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Thu, 09 Nov 2017 18:31:34 +0100
branch
maintenance
changeset 5981
2f2c988c359e
parent 5980
25b57b1621f5
child 5982
af0d2f9dfa21

Reverted changeset d89cd224dd1b because the 'fix' cause more trouble than it fixes.
(grafted from b8d53f4149c82496655f517c9cb72bb7333acbcd)

DebugClients/Python/ThreadExtension.py file | annotate | diff | comparison | revisions
--- a/DebugClients/Python/ThreadExtension.py	Fri Nov 03 17:10:01 2017 +0100
+++ b/DebugClients/Python/ThreadExtension.py	Thu Nov 09 18:31:34 2017 +0100
@@ -328,7 +328,7 @@
                     # intercept the thread creation by threading.Thread
                     self.run = lambda s=self, run=self.run: _bootstrap(s, run)
                     
-                    module.Thread.__init__(self, *args, **kwargs)
+                    super(ThreadWrapper, self).__init__(*args, **kwargs)
             
             module.Thread = ThreadWrapper
         

eric ide

mercurial