[issue34430] Double chaining futures in asyncio.future.wrap_future

2018-08-18 Thread Alfred Sawaya
Change by Alfred Sawaya : -- versions: -Python 3.6, Python 3.7 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue34430] Double chaining futures in asyncio.future.wrap_future

2018-08-18 Thread Alfred Sawaya
Change by Alfred Sawaya : -- pull_requests: -8283 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue34430] Double chaining futures in asyncio.future.wrap_future

2018-08-18 Thread Alfred Sawaya
Alfred Sawaya added the comment: The proposed solution (PR) has passed all tests. -- ___ Python tracker ___ ___ Python-bugs-list ma

[issue34430] Double chaining futures in asyncio.future.wrap_future

2018-08-18 Thread Alfred Sawaya
Change by Alfred Sawaya : -- pull_requests: +8284 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue34430] Double chaining futures in asyncio.future.wrap_future

2018-08-18 Thread Alfred Sawaya
Change by Alfred Sawaya : -- pull_requests: +8283 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue34430] Double chaining futures in asyncio.future.wrap_future

2018-08-18 Thread Alfred Sawaya
Alfred Sawaya added the comment: Actually the PR does not pass some tests, I will work on this. If the new behaviours are accepted, I will implement them soon. -- ___ Python tracker

[issue34430] Double chaining futures in asyncio.future.wrap_future

2018-08-18 Thread Alfred Sawaya
Change by Alfred Sawaya : -- pull_requests: -8281 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue34430] Double chaining futures in asyncio.future.wrap_future

2018-08-18 Thread Alfred Sawaya
Change by Alfred Sawaya : -- keywords: +patch pull_requests: +8281 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-li

[issue34430] Double chaining futures in asyncio.future.wrap_future

2018-08-18 Thread Alfred Sawaya
Change by Alfred Sawaya : -- pull_requests: -8280 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue34430] Double chaining futures in asyncio.future.wrap_future

2018-08-18 Thread Alfred Sawaya
New submission from Alfred Sawaya : asyncio.future.wrap_future is used to wrap a concurrent.future.Future in a asyncio.future.Future. The actual implementation as the following behaviours : 1) When the concurrent.future.Future gets a result, the asyncio.future.Future gets the same result,