you are viewing a single comment's thread.

view the rest of the comments →

[–]trident765 2 insightful - 1 fun2 insightful - 0 fun3 insightful - 1 fun -  (1 child)

I briefly learned the await crap to debug this one vendor's library that used it. But once I was done debugging this I unlearned it because I didn't see a point to doing concurrent things this way. In practice I find that most concurrent things can be done with the python threading module:

https://realpython.com/intro-to-python-threading/

For GUI stuff I use QThreads.

[–]fschmidt[S] 1 insightful - 1 fun1 insightful - 0 fun2 insightful - 1 fun -  (0 children)