Re: [Twisted-Python] Amazing exception "GeneratorExit"

2013-01-25 Thread Аркадий Левин
Christopher, thank you. ___ Twisted-Python mailing list Twisted-Python@twistedmatrix.com http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python

Re: [Twisted-Python] Amazing exception "GeneratorExit"

2013-01-25 Thread Christopher Armstrong
On Fri, Jan 25, 2013 at 10:35 AM, Аркадий Левин wrote: > Hi all, i got strange error > > If run this: > > # -*- coding: UTF-8 -*- > > import os > import sys > > from twisted.python import log > from twisted.internet import reactor > from twisted.internet.defer import Deferred, inlineCallbacks > >

Re: [Twisted-Python] Amazing exception "GeneratorExit"

2013-01-25 Thread Аркадий Левин
I try answer myself, reason for this error broken reference? On Fri, Jan 25, 2013 at 10:35 PM, Аркадий Левин wrote: > Hi all, i got strange error > > If run this: > > # -*- coding: UTF-8 -*- > > import os > import sys > > from twisted.python import log > from twisted.internet import reactor > fro

[Twisted-Python] Amazing exception "GeneratorExit"

2013-01-25 Thread Аркадий Левин
Hi all, i got strange error If run this: # -*- coding: UTF-8 -*- import os import sys from twisted.python import log from twisted.internet import reactor from twisted.internet.defer import Deferred, inlineCallbacks @inlineCallbacks def _(): try: (yield Deferred())

Re: [Twisted-Python] Stopping Reactor in UnitTest Callback

2013-01-25 Thread Fabian Rothfuchs
Hey Jean-Paul (and all the others in this thread), Thank you very much for your help so far - I do really appreciate it! I'm well aware of the fact that `deferLater` does not magically turn blocking apps to non-blocking ones. The idea is, whatever SUDS does, in the end it should send a SOAP reque