On Mon, 11 May 2009 17:40:57 -0300, Gabriel <[email protected]> wrote:
Hello all!,I'm trying to implement a simple one way communication using twisted. [snip] When I call send the first time it works fine, when I call send a second time the sender hangs. [snip]
None of the reactors in Twisted are restartable. You can run and stop them once. After you've stopped a reactor, you cannot run it again. This is the cause of your problem. Jean-Paul -- http://mail.python.org/mailman/listinfo/python-list
