[issue29703] Fix asyncio to support instantiation of new event loops in subprocesses

2017-03-31 Thread Donald Stufft
Changes by Donald Stufft : -- pull_requests: +991 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue29703] Fix asyncio to support instantiation of new event loops in subprocesses

2017-03-24 Thread Yury Selivanov
Yury Selivanov added the comment: New changeset ba7e1f9a4e06c0b4ad594fd64edcaf7292515820 by Yury Selivanov in branch 'master': bpo-29703: asyncio: Fix creating new event loops in child processes. (#404) https://github.com/python/cpython/commit/ba7e1f9a4e06c0b4ad594fd64edcaf7292515820

[issue29703] Fix asyncio to support instantiation of new event loops in subprocesses

2017-03-24 Thread Yury Selivanov
Yury Selivanov added the comment: New changeset 8b73b6198bc0753c5ce6e8f91eb7bddc2bd42a73 by Yury Selivanov in branch '3.5': bpo-29703: asyncio: Fix creating new event loops in child processes. (#411) https://github.com/python/cpython/commit/8b73b6198bc0753c5ce6e8f91eb7bddc2bd42a73 --

[issue29703] Fix asyncio to support instantiation of new event loops in subprocesses

2017-03-24 Thread Yury Selivanov
Yury Selivanov added the comment: New changeset 01e5230ef0b28658cf7311be199363eda98808bd by Yury Selivanov in branch '3.6': bpo-29703: asyncio: Fix creating new event loops in child processes. (#404) (#410) https://github.com/python/cpython/commit/01e5230ef0b28658cf7311be199363eda98808bd ---

[issue29703] Fix asyncio to support instantiation of new event loops in subprocesses

2017-03-17 Thread Larry Hastings
Changes by Larry Hastings : -- pull_requests: -593 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue29703] Fix asyncio to support instantiation of new event loops in subprocesses

2017-03-17 Thread Larry Hastings
Changes by Larry Hastings : -- pull_requests: +593 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue29703] Fix asyncio to support instantiation of new event loops in subprocesses

2017-03-03 Thread Yury Selivanov
Yury Selivanov added the comment: Yes, closing the issue. Thanks, Ned! -- resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue29703] Fix asyncio to support instantiation of new event loops in subprocesses

2017-03-03 Thread Ned Deily
Ned Deily added the comment: With the PRs merged, can this issue be closed now? -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue29703] Fix asyncio to support instantiation of new event loops in subprocesses

2017-03-02 Thread Yury Selivanov
Changes by Yury Selivanov : -- pull_requests: +342 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue29703] Fix asyncio to support instantiation of new event loops in subprocesses

2017-03-02 Thread Yury Selivanov
Changes by Yury Selivanov : -- pull_requests: +341 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue29703] Fix asyncio to support instantiation of new event loops in subprocesses

2017-03-02 Thread Guido van Rossum
Changes by Guido van Rossum : -- nosy: -gvanrossum ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue29703] Fix asyncio to support instantiation of new event loops in subprocesses

2017-03-02 Thread Yury Selivanov
Changes by Yury Selivanov : -- components: +asyncio nosy: +gvanrossum resolution: fixed -> status: closed -> open ___ Python tracker ___

[issue29703] Fix asyncio to support instantiation of new event loops in subprocesses

2017-03-02 Thread Yury Selivanov
Yury Selivanov added the comment: > OK. I assume you will make PRs for python/cpython and cherry-pack to the 3.6 > and 3.5 branches? Yes, working on it! -- ___ Python tracker _

[issue29703] Fix asyncio to support instantiation of new event loops in subprocesses

2017-03-02 Thread Ned Deily
Ned Deily added the comment: OK. I assume you will make PRs for python/cpython and cherry-pack to the 3.6 and 3.5 branches? -- ___ Python tracker ___ ___

[issue29703] Fix asyncio to support instantiation of new event loops in subprocesses

2017-03-02 Thread Yury Selivanov
Changes by Yury Selivanov : -- pull_requests: +336 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue29703] Fix asyncio to support instantiation of new event loops in subprocesses

2017-03-02 Thread Yury Selivanov
Changes by Yury Selivanov : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue29703] Fix asyncio to support instantiation of new event loops in subprocesses

2017-03-02 Thread Yury Selivanov
New submission from Yury Selivanov: Proxy for https://github.com/python/asyncio/pull/497 Ned, this needs to be in 3.6.1, working code from 3.4 doesn't work in 3.6.0: http://stackoverflow.com/questions/42546099/python-asyncio-migrate-from-3-4-to-3-5/42566336#42566336 -- assignee: yseliv