Fred <eldman...@gmail.com> added the comment:

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.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue45625>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to