Re: [Async-sig] await question

2018-12-10 Thread Pradip Caulagi
in this case fib(1) is resolved instantly, thus it's caller is resolved >> instantly, thus... >> >> On Mon, 10 Dec 2018 at 9:28 PM, Pradip Caulagi wrote: >>> >>> I was wondering if every use of 'await' should return the control to >>> event loop? So in

[Async-sig] await question

2018-12-10 Thread Pradip Caulagi
I was wondering if every use of 'await' should return the control to event loop? So in this example - https://gist.github.com/caulagi/3edea8cf734495f2592528a48f99e1d2 - I was hoping I would see 'A', 'B' to be mixed, but I see only 'A' followed by 'B'. What am I missing? I am using Python 3.7.1.