-
-
Notifications
You must be signed in to change notification settings - Fork 30.7k
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
gh-93453: Make get_event_loop() an alias of get_running_loop() #93454
gh-93453: Make get_event_loop() an alias of get_running_loop() #93454
Conversation
17d5cad
to
64dcf5b
Compare
Yury and myself are getting together tomorrow to discuss a bunch of pressing asyncio issues (many orphaned since Andrew and Yury stopped participating). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we should eventually do this, but I'm not keen to do it right now. I think we should first deprecate policies, child watchers, and set_event_loop(). See GH-94597.
_c_get_event_loop = get_event_loop | ||
_c__get_event_loop = _get_event_loop | ||
|
||
get_event_loop = get_running_loop |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Isn't this a duplicate of line 778?
I think we've changed our mind on this, and we're not doing this, ever, right? So then it should be closed. |
I thought that I closed this PR. Thank you for a reminder. |
#93453