Python has coroutines (e.g. async/await) now, which you can use as an alternative method for concurrency, how many of you are still dependent on threading for I/O-bound work?
Apart from this (concurrency), do you have any other uses for multiple threads in Python, or will multi-threading be completely replaced by coroutines for you?
J03
Just another bit in the byte
Don't coroutines block? If something is being heavily processed in the background, IO with stutter or block, right?