On 2/20/2014, 12:54 PM, Guido van Rossum wrote:
The source transformation route has not been very popular with Python 2 vs. 3 porting projects.
It's not popular, but nevertheless, many use it just fine.
I wonder if it would be possible (using asyncio internals) to write a From() function that lets you write "yield From(x)" instead of "yield from x" in Tulip?
I think it's doable. Although, I'm not sure we should include this in asyncio, as we either should encourage people to use 'yield From' in asyncio and python3, or we'll end up with half code using one form, and half using another. Yury
