[issue34687] asyncio: is it time to make ProactorEventLoop as the default event loop?

2019-10-23 Thread Carlton Gibson
Carlton Gibson added the comment: Created: https://bugs.python.org/issue38563 Thanks! -- ___ Python tracker ___ ___ Python-bugs-l

[issue34687] asyncio: is it time to make ProactorEventLoop as the default event loop?

2019-10-23 Thread STINNER Victor
STINNER Victor added the comment: > (I'm guessing I need to create a new issue?) Please open a new issue. -- ___ Python tracker ___ __

[issue34687] asyncio: is it time to make ProactorEventLoop as the default event loop?

2019-10-23 Thread Carlton Gibson
Carlton Gibson added the comment: This change causes an issue in asgiref (and so Django) for Windows and Python 3.8. https://github.com/django/asgiref/issues/132 https://code.djangoproject.com/ticket/30900 It looks as if `ProactorEventLoop` needs to check the current thread before triggeri

[issue34687] asyncio: is it time to make ProactorEventLoop as the default event loop?

2018-09-28 Thread miss-islington
miss-islington added the comment: New changeset 37aae9dcf18753b8ffda99d1a5758a90af852464 by Miss Islington (bot) (Victor Stinner) in branch 'master': bpo-34687: Update asyncio doc for ProactorEventLoop (GH-9623) https://github.com/python/cpython/commit/37aae9dcf18753b8ffda99d1a5758a90af852464

[issue34687] asyncio: is it time to make ProactorEventLoop as the default event loop?

2018-09-28 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +9021 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue34687] asyncio: is it time to make ProactorEventLoop as the default event loop?

2018-09-26 Thread Andrew Svetlov
Andrew Svetlov added the comment: I think the only way to make sure that proactor event loop is stable -- starting to use it everywhere on Windows. Let's do it. -- ___ Python tracker __

[issue34687] asyncio: is it time to make ProactorEventLoop as the default event loop?

2018-09-25 Thread STINNER Victor
STINNER Victor added the comment: Thank you for the review Yury ;-) -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue34687] asyncio: is it time to make ProactorEventLoop as the default event loop?

2018-09-25 Thread Yury Selivanov
Yury Selivanov added the comment: New changeset 6ea29c5e90dde6c240bd8e0815614b52ac307ea1 by Yury Selivanov (Victor Stinner) in branch 'master': bpo-34687: Make asynico use ProactorEventLoop by default (GH-9538) https://github.com/python/cpython/commit/6ea29c5e90dde6c240bd8e0815614b52ac307ea1

[issue34687] asyncio: is it time to make ProactorEventLoop as the default event loop?

2018-09-24 Thread STINNER Victor
Change by STINNER Victor : -- keywords: +patch pull_requests: +8940 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-l

[issue34687] asyncio: is it time to make ProactorEventLoop as the default event loop?

2018-09-14 Thread Yury Selivanov
Yury Selivanov added the comment: I'm not sure that ProactorEventLoop is stable enough TBH :( And I wouldn't be able to be on call for Windows users to fix all bugs in ProactieEventLoop. Andrew, your thoughts on this? -- ___ Python tracker

[issue34687] asyncio: is it time to make ProactorEventLoop as the default event loop?

2018-09-14 Thread STINNER Victor
New submission from STINNER Victor : Is it time to make ProactorEventLoop as the default event loop? Since 2014, many features have been added to ProactorEventLoop (ex: SSL support) and the implementation is way more today than it was 4 years ago. Comparison of SelectorEventLoop and ProactorE