Re: [Twisted-Python] Docs HTML suggestion/request for moving between versions.

2011-10-26 Thread Michael Tharp
On 10/26/2011 11:29 AM, Phil Mayers wrote: > Obviously it's tricky to force Google to put "current" at the top! But > could we maybe have a little dropdown in the top-right that > shows the version, and lets you pick a new one and have the page reload? Other possibilities: - Add a big yellow "th

[Twisted-Python] Windows build slaves

2011-03-18 Thread Michael Tharp
n the past :P The offer is flexible, I'm just trying to start small to feel out the requirements. -- Michael Tharp rPath, Inc. ___ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python

Re: [Twisted-Python] deferred as a Protocol class attribute, Protocol as class attribute of a Factory ...

2010-06-16 Thread Michael Tharp
On 06/16/2010 12:50 PM, Jean Daniel wrote: > Hello, > > Reading the SMTP client tutorial[1], I do not see the impact of the > factory having a protocol defined as a class attribute. Especially > when here is a big fat warning [2] that I should actually understand > the inplications. My guess is tha

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