[issue24867] Asyncio Task.get_stack fails with native coroutines

2015-08-25 Thread Roundup Robot
Roundup Robot added the comment: New changeset 595614c08eeb by Yury Selivanov in branch '3.5': Issue #24867: Fix asyncio.Task.get_stack() for 'async def' coroutines https://hg.python.org/cpython/rev/595614c08eeb New changeset 9b28f41f1353 by Larry Hastings in branch '3.5': Merged in 1st1/cpython

[issue24867] Asyncio Task.get_stack fails with native coroutines

2015-08-24 Thread Larry Hastings
Larry Hastings added the comment: Pull request accepted and merged. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue24867] Asyncio Task.get_stack fails with native coroutines

2015-08-14 Thread Yury Selivanov
Yury Selivanov added the comment: Looks like we didn't have unittests for Task.get_stack()/Task.print_stack(). Anyways, it's now fixed, I'll make a PR for Larry to get this in 3.5.0rc2. -- assignee: -> yselivanov nosy: +larry priority: normal -> release blocker resolution: -> fixed st

[issue24867] Asyncio Task.get_stack fails with native coroutines

2015-08-14 Thread Roundup Robot
Roundup Robot added the comment: New changeset 53d2a7c023bc by Yury Selivanov in branch '3.4': Issue #24867: Fix Task.get_stack() for 'async def' coroutines https://hg.python.org/cpython/rev/53d2a7c023bc New changeset d25022765186 by Yury Selivanov in branch '3.5': Merge 3.4 (Issue #24867) https

[issue24867] Asyncio Task.get_stack fails with native coroutines

2015-08-14 Thread David Griffin
David Griffin added the comment: It should be noted that when I said get_frame in the original comment, I actually meant get_stack -- title: Asyncio get_frame fails with native coroutines -> Asyncio Task.get_stack fails with native coroutines ___ Py