Re: [PyKDE] QThread problem

2002-12-20 Thread Phil Thompson
On Thursday 19 December 2002 11:45 am, Steven Scott wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I'm running the latest Python, Qt, and PyQt. I have this class: class BotThread( QThread ): def __init__( self, bot, callback ): self.bot = bot

Re: [PyKDE] QThread problem

2002-12-20 Thread Steven Scott
Quoting Michael Lauer [EMAIL PROTECTED]: You forgot to call the constructor of QThread. ouch, I'm dumb. speaking on threading PyQt in general, can I assume that python threads and PyQt don't mix? (sorry if this has been discussed before). when I try to use python threads, and a thread

Re: [PyKDE] QThread problem

2002-12-20 Thread Phil Thompson
On Friday 20 December 2002 1:55 pm, Steven Scott wrote: Quoting Michael Lauer [EMAIL PROTECTED]: You forgot to call the constructor of QThread. ouch, I'm dumb. speaking on threading PyQt in general, can I assume that python threads and PyQt don't mix? (sorry if this has been discussed

Re: [PyKDE] QThread problem

2002-12-20 Thread Steven Scott
Quoting Phil Thompson [EMAIL PROTECTED]: Read the relevant section in the PyQt documentation. It describes the circumstances in which you can mix them. sorry, I never saw the little Next at the bottom of the docs. I always felt like there should be more documentation...:) is there a