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 Fred
Recipients Fred, asvetlov, eric.araujo, gstarck, terry.reedy, yselivanov
Date 2021-11-02.09:55:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1635846943.31.0.209003337301.issue45625@roundup.psfhosted.org>
In-reply-to
Content
I don't care what async framework is used, nor do I care if its a x86 or ARM, or if its Windows or Linux.

I don't want to have to setup an async runner because it is boilerplate code, and it brings concern into my application which is outside of the domain of my application.

In JavaScript, I can just call await fetch() or any other asynchronous function without having to pick and configure a async runtime.

On .NET it is also very easy, just await a function at the top-level without declare any runtime either. 
https://docs.microsoft.com/en-us/dotnet/csharp/whats-new/tutorials/top-level-statements

Python is suppose to be a high-level language. Programmers should focus on their domain, not underlying things such as which runtime to use, which garbage collector to use, etc.
History
Date User Action Args
2021-11-02 09:55:43Fredsetrecipients: + Fred, terry.reedy, eric.araujo, asvetlov, gstarck, yselivanov
2021-11-02 09:55:43Fredsetmessageid: <1635846943.31.0.209003337301.issue45625@roundup.psfhosted.org>
2021-11-02 09:55:43Fredlinkissue45625 messages
2021-11-02 09:55:43Fredcreate