Re: threading.py Condition wait overflow error

2005-01-26 Thread Tim Peters
[Tim Peters] ... >> The most common cause for "impossible exceptions" > is flawed C code in an extension that fails to >> check a Python C API call for an error return. [Mark English] > Yes, I use a lot of C modules which I wrote. Then you know where to start looking . > It could certainly be o

Re: threading.py Condition wait overflow error

2005-01-26 Thread Mark English
> Date: Wed, 26 Jan 2005 00:10:31 -0500 > From: Tim Peters <[EMAIL PROTECTED]> > The most common cause for "impossible exceptions" > is flawed C code in an extension that fails to > check a Python C API call for an error return. Yes, I use a lot of C modules which I wrote. It could certainly be on

Re: threading.py Condition wait overflow error

2005-01-25 Thread Tim Peters
[Mark English] > Every once in a while since I moved to Python 2.4 I've been seeing the > following exception in threading.py Condition: > > File "mctest3.py", line 1598, in WaitForMessages >self.condResponses.wait(1.0) > File "C:\Program Files\Python24\lib\threading.py", line 221, in wait >

threading.py Condition wait overflow error

2005-01-25 Thread Mark English
Every once in a while since I moved to Python 2.4 I've been seeing the following exception in threading.py Condition: File "mctest3.py", line 1598, in WaitForMessages self.condResponses.wait(1.0) File "C:\Program Files\Python24\lib\threading.py", line 221, in wait delay = min(delay * 2