This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients Ben.Darnell, Big Stone, asvetlov, lukasz.langa, njs, vstinner, yselivanov
Date 2019-11-05.01:23:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1572917004.12.0.750181459232.issue37373@roundup.psfhosted.org>
In-reply-to
Content
> Is it be possible to backport this inside the standard ProactorEventLoop of Python-3.8.1 ? As things are currently broken, no kitten would be armed https://github.com/python-trio/trio/pull/1269

No, we don't add features to minor releases.

If you need add_reader(), your code works with Python 3.7 but fails with 3.8, you can use the following code to ensure that you use the SelectorEventLoop:

if sys.platform == 'win32':
  asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())
History
Date User Action Args
2019-11-05 01:23:24vstinnersetrecipients: + vstinner, njs, asvetlov, lukasz.langa, Ben.Darnell, yselivanov, Big Stone
2019-11-05 01:23:24vstinnersetmessageid: <1572917004.12.0.750181459232.issue37373@roundup.psfhosted.org>
2019-11-05 01:23:24vstinnerlinkissue37373 messages
2019-11-05 01:23:23vstinnercreate