-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
python 3.8 changes default asyncio loop on windows https://bugs.python.org/issue37373 #2751
Comments
#2608 has some discussions about why Tornado should just document what to do on Windows rather than make a decision for users. |
Closing as a duplicate of #2608 |
For Django, in Windows 10, Python : 3.8.1
|
This was referenced Jun 2, 2020
GHcodetyper
pushed a commit
to GHcodetyper/python_experiments
that referenced
this issue
Feb 1, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
See https://bugs.python.org/issue37373
I failed to find failing tests in tornado, but loop's add_reader() now "not implemented" by default on windows and asyncio platform uses it.
Here is the crash form Jupyter notebook:
I think patch is trivial:
tornado/platform/asyncio.py
:But it's too hard to me is to write tests.
There is a note on the top of tornado/platform/asyncio.py describing situation, but it seems it pretends application must set such policy. I don't know which way is correct, my patch solves the problem for me, I think devs must communicate in all of three places - here, jupyter issues, python bugs to make a decision.
The text was updated successfully, but these errors were encountered: