Re: [Twisted-Python] pb: callRemotes execute serially on server-side

2009-01-19 Thread Jean-Paul Calderone
On Mon, 19 Jan 2009 13:42:14 -0500, David Karnowski wrote: Hi all, I'm having a client-side pb app call the same server-side function 10 times with this client-side code: def process_test(rootObject): for i in range(10): _logger.debug("Calling remote with arg: %d" % (i)) de

[Twisted-Python] pb: callRemotes execute serially on server-side

2009-01-19 Thread David Karnowski
Hi all, I'm having a client-side pb app call the same server-side function 10 times with this client-side code: def process_test(rootObject): for i in range(10): _logger.debug("Calling remote with arg: %d" % (i)) deferred = rootObject.callRemote("test_it", i) defe

[Twisted-Python] Re: Mailing list archive search?

2009-01-19 Thread Martin Geisler
"David Karnowski" writes: > Is there a search function available for the mailing list archives? Just use Gmane -- there you can also read and post using a newsreader. The Twisted lists are here: http://dir.gmane.org/index.php?prefix=gmane.comp.python.twisted and in particular here: http:/

Re: [Twisted-Python] Mailing list archive search?

2009-01-19 Thread Jean-Paul Calderone
On Mon, 19 Jan 2009 11:59:28 -0500, David Karnowski wrote: Is there a search function available for the mailing list archives? I don't see a search field anywhere. Am I missing something obvious? The search field on your home page appears to ju

[Twisted-Python] Mailing list archive search?

2009-01-19 Thread David Karnowski
Is there a search function available for the mailing list archives? I don't see a search field anywhere. Am I missing something obvious? The search field on your home page appears to just search the Tickets, Changesets, & the Wiki, and not the mai

[Twisted-Python] spawnProcess() works after reactor.stop()

2009-01-19 Thread Paul Thomas
I'm using SelectReactor on Linux for a system that spawns a lot of sub- processes. I'm finding that there are some cases where a signal to the twistd process doesn't reap the children and I think it's because the SIGINT handler defers the shutdown but doesn't prevent spawnProcess() from work

[Twisted-Python] confused on combining different py moduels to make a twisted app

2009-01-19 Thread Krishnakant
hello hackers, I am a new comer to twisted and find it very interesting. By the way I got my previous problem solved regarding returning lists. Now I have another confusion. I have a lot of modules (.py) which I wish to combine and create a server application in twisted. for example I have organi