Python Tutorial on Multithreading

2011-02-21 Thread KevinSimonson
I've been teaching myself Python from the tutorial routed at http:// www.tutorialspoint.com/python/index.htm. It's worked out pretty well, but when I copied its multithreading example from the bottom of the page at http://www.tutorialspoint.com/python/ python_multithreading.htm and tried to run

Re: Python Tutorial on Multithreading

2011-02-21 Thread KevinSimonson
On Feb 21, 4:04 pm, Alexander Kapps alex.ka...@web.de wrote: That tutorial seems to be wrong. According to the official docs: If the subclass overrides the constructor, it must make sure to invoke the base class constructor (Thread.__init__()) before doing anything else to the thread.