[issue24342] coroutine wrapper reentrancy

2015-06-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset d11cb1218489 by Yury Selivanov in branch '3.5': Issue 24342: No need to use PyAPI_FUNC for _PyEval_ApplyCoroutineWrapper https://hg.python.org/cpython/rev/d11cb1218489 New changeset b83fbc13ae1e by Yury Selivanov in branch 'default': Issue 24342: No

[issue24342] coroutine wrapper reentrancy

2015-06-02 Thread Yury Selivanov
Changes by Yury Selivanov : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue24342] coroutine wrapper reentrancy

2015-06-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset 19d613c2cd5f by Yury Selivanov in branch '3.5': Issue 24342: Let wrapper set by sys.set_coroutine_wrapper fail gracefully https://hg.python.org/cpython/rev/19d613c2cd5f New changeset 8a6db1679a23 by Yury Selivanov in branch 'default': Issue 24342: L

[issue24342] coroutine wrapper reentrancy

2015-06-01 Thread Yury Selivanov
Yury Selivanov added the comment: Thanks, Nick! I'll commit the patch with your error message (it's much better!) -- ___ Python tracker ___ _

[issue24342] coroutine wrapper reentrancy

2015-06-01 Thread Nick Coghlan
Nick Coghlan added the comment: Making sure I'm following the issue correctly here: 1. wrapper is a normal function, so there's no change for set_couroutine_wrapper() to detect anything might be amiss 2. any "async def" statement will call the registered coroutine wrapper to wrap the created

[issue24342] coroutine wrapper reentrancy

2015-06-01 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue24342] coroutine wrapper reentrancy

2015-06-01 Thread Eric Snow
Eric Snow added the comment: @Skip, because roundup will change the title to the subject of the email and the title had been changed after the message to which you replied. -- ___ Python tracker __

[issue24342] coroutine wrapper reentrancy

2015-06-01 Thread Skip Montanaro
Skip Montanaro added the comment: This is a bit off topic, but why did my reply to Yuri's ticket by email change the title? I didn't mess with the subject in my mail. -- ___ Python tracker

[issue24342] coroutine wrapper reentrancy

2015-06-01 Thread Yury Selivanov
Yury Selivanov added the comment: > why wouldn't it be good enough in this case? Because it's highly non-obvious, it took me a while to understand what's *actually* going on. -- ___ Python tracker __

[issue24342] coroutine wrapper reentrancy

2015-06-01 Thread Eric Snow
Eric Snow added the comment: Changing the title back. :) -- nosy: +eric.snow title: coroutine wrapper recursion -> coroutine wrapper reentrancy ___ Python tracker ___ ___

[issue24342] coroutine wrapper reentrancy

2015-05-31 Thread Yury Selivanov
Changes by Yury Selivanov : -- stage: -> patch review title: coroutine wrapper recursion -> coroutine wrapper reentrancy type: -> behavior ___ Python tracker ___ __