Re: Python Tutorial on Multithreading

2011-02-21 Thread Alexander Kapps
On 21.02.2011 23:30, KevinSimonson wrote: 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 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.

Re: Python Tutorial on Multithreading

2011-02-21 Thread Terry Reedy
On 2/21/2011 7:02 PM, KevinSimonson wrote: On Feb 21, 4:04 pm, Alexander Kappsalex.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__())