Re: [Twisted-Python] exception not being trapped with Failure.trap

2010-05-03 Thread Gabriel Rossetti
Michael Tharp wrote: > On 05/03/2010 09:46 AM, Gabriel Rossetti wrote: >> f.trap(MyException) raises MyException and f.value == MyException >> evaluates to True as expected, so why isn't it being trapped? > > f.value should be an instance of MyException, not the class itself. > Perhaps you are doi

Re: [Twisted-Python] exception not being trapped with Failure.trap

2010-05-03 Thread Michael Tharp
On 05/03/2010 09:46 AM, Gabriel Rossetti wrote: > f.trap(MyException) raises MyException and f.value == MyException > evaluates to True as expected, so why isn't it being trapped? f.value should be an instance of MyException, not the class itself. Perhaps you are doing something like Failure(MyEx