Re: [python-tulip] Get status of loop.call_later call

2015-05-08 Thread Alexander Shorin
Alright, so my suspicions are verified. Thanks! -- ,,,^..^,,, On Fri, May 8, 2015 at 3:54 AM, Guido van Rossum gu...@python.org wrote: On Thu, May 7, 2015 at 5:13 PM, Alexander Shorin kxe...@gmail.com wrote: Assume I want to make a delayed call: handler = loop.call_later(delay,

Re: [python-tulip] Get status of loop.call_later call

2015-05-07 Thread coles.da...@gmail.com
Hi Alexander, I don't believe there's any way which which you can check the result of a callback from the Handle. You would have to use something like a Future passed into your callback. You can also use this future to capture any potential exceptions thrown in the callback. def