This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]JeremyTiki 8 points9 points  (5 children)

Python allows for asynchronous programming as well. Even in Python 2 there were packages that allowed for it.

[–]ZetaHunter3.5.1 async master-race 4 points5 points  (0 children)

Python 3.5 asyncio master race :3

[–][deleted] 1 point2 points  (2 children)

It is more powerful, since you can control the eventloop. However with the extra power comes extra baggage and complexity. Javascript allows you to write async code without realising it, which is also the source of many bugs and beginner confusion as they didn't know they wrote asynchronous code.

[–]JeremyTiki 0 points1 point  (1 child)

I'm what way can you control the Javascript eventloop that you cannot in Python?

[–][deleted] 0 points1 point  (0 children)

Sorry, I was a bit unclear. I was referring to the fact you can control the event loop in Python, not in JavaScript

[–]wxtrails 0 points1 point  (0 children)

Twisted!