Re: [Twisted-Python] Volunteering for Release Manager

2009-07-14 Thread Jonathan Lange
On Tue, Jul 7, 2009 at 8:07 PM, wrote: > > On 07:54 am, j...@mumak.net wrote: >>Hello all, >> >>With some trepidation and a complete willingness to fail, I'm offering >>my services as Twisted release manager, starting Tuesday next week. > > Hooray! >>I have only two questions: >>  - Am I accepted?

Re: [Twisted-Python] Possible Twisted sprint

2009-07-14 Thread Jonathan Lange
On Thu, Jul 9, 2009 at 1:26 PM, wrote: > > On 8 Jul, 04:31 am, j...@mumak.net wrote: >> >> I've recently returned from EuroPython where I got a chance to work >> with Thomas Hervé on Twisted. In the giddy rush of success I thought, >> "Wouldn't it be great if we could get a whole week to do this?"

[Twisted-Python] Re adbapi and multiple queries in single transaction.

2009-07-14 Thread Vishal Shetye
Hi, I went through several posts and blogs regarding long lived transactions in twisted. Some of them are -A bug with current status won't fix. http://twistedmatrix.com/trac/ticket/303 -Laxdb from sandbox. http://archives.free.net.ph/message/20050831.235536.440061b8.en.html#t

[Twisted-Python] Cancel/stop Deferred() at any time

2009-07-14 Thread vitaly
Hello, is there any way to cancel the Deferred callback in those examples? 1. d = defer.Deferred() d.addCallback(methodA).addErrback(methodErr) d.callback(None) 2. d = methodB().addErrback(methodErr) wfd = defer.waitForDeferred(d) Appreciate any help. ___

Re: [Twisted-Python] Cancel/stop Deferred() at any time

2009-07-14 Thread Jean-Paul Calderone
On Tue, 14 Jul 2009 11:10:10 -0400, vit...@synapticvision.com wrote: >Hello, > >is there any way to cancel the Deferred callback in those examples? > >1. >d = defer.Deferred() >d.addCallback(methodA).addErrback(methodErr) >d.callback(None) > >2. >d = methodB().addErrback(methodErr) >wfd = defer.wai

Re: [Twisted-Python] Cancel/stop Deferred() at any time

2009-07-14 Thread vitaly
Thank you, "cancel" callback - stop running now what you've been asked to exec. Example: some SQL query that takes 5 min and I need to cancel it anywhere in the middle and it, of course, it doesn't matter what the result set. As far as I see from base.py and client.py, some sort of timeout no

Re: [Twisted-Python] Possible Twisted sprint

2009-07-14 Thread Jamu Kakar
Hi, On Tue, Jul 14, 2009 at 2:54 AM, Jonathan Lange wrote: > 1. If you are attending, add your name; if you are attending subject > to other conditions (funding, leave etc) then add your name & say > 'tentative'; if you are _not_ attending, add your name to the not > attending list. I logged into

Re: [Twisted-Python] Possible Twisted sprint

2009-07-14 Thread Jean-Paul Calderone
On Tue, 14 Jul 2009 11:33:03 -0700, Jamu Kakar wrote: >Hi, > >On Tue, Jul 14, 2009 at 2:54 AM, Jonathan Lange wrote: >> 1. If you are attending, add your name; if you are attending subject >> to other conditions (funding, leave etc) then add your name & say >> 'tentative'; if you are _not_ attendi

Re: [Twisted-Python] Cancel/stop Deferred() at any time

2009-07-14 Thread David Bolen
vit...@synapticvision.com writes: > "cancel" callback - stop running now what you've been asked to exec. > Example: some SQL query that takes 5 min and I need to cancel it > anywhere in the middle and it, of course, it doesn't matter what the > result set. Note that the Deferred itself has no