Thu, 09 Nov 2017 18:31:34 +0100
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