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

2019-04-03 Thread Alfred Sawaya
Alfred Sawaya added the comment: Can be closed if not needed by the community. -- resolution: -> wont fix stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

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

2018-10-02 Thread Alfred Sawaya
Alfred Sawaya added the comment: I use it to integrate a concurrent-based software (B) with an asyncio-based software (A). (B) will undergo a massive refactoring to become asyncio-based in the future, but for now, I need to use it as-is. I don't want to modify (A) to handle

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

2018-08-18 Thread Alfred Sawaya
Change by Alfred Sawaya : -- title: Double chaining futures in asyncio.future.wrap_future -> Symmetrical chaining futures in asyncio.future.wrap_future ___ Python tracker <https://bugs.python.org/issu

[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 <https://bugs.python.org/issue34430> ___ ___ Python-bugs-list mailin

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

2018-08-18 Thread Alfred Sawaya
Change by Alfred Sawaya : -- pull_requests: -8283 ___ Python tracker <https://bugs.python.org/issue34430> ___ ___ Python-bugs-list mailing list Unsubscribe:

[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 <https://bugs.python.org/issue34430> ___ ___ Python-bug

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

2018-08-18 Thread Alfred Sawaya
Change by Alfred Sawaya : -- pull_requests: +8284 ___ Python tracker <https://bugs.python.org/issue34430> ___ ___ 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 <https://bugs.python.org/issue34430> ___ ___ Python-bugs-list mailing list Unsubscribe:

[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 <https://bugs.python.org/issue34

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

2018-08-18 Thread Alfred Sawaya
Change by Alfred Sawaya : -- pull_requests: -8281 ___ Python tracker <https://bugs.python.org/issue34430> ___ ___ 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 : -- keywords: +patch pull_requests: +8281 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue34430> ___ ___ Py

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

2018-08-18 Thread Alfred Sawaya
Change by Alfred Sawaya : -- pull_requests: -8280 ___ Python tracker <https://bugs.python.org/issue34430> ___ ___ Python-bugs-list mailing list Unsubscribe:

[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