(no title)
neilkk | 2 years ago
Async I/O and threads are two different things, and either can be present in real code without the other.
neilkk | 2 years ago
Async I/O and threads are two different things, and either can be present in real code without the other.
wolletd|2 years ago
I have ran a lot of programs containing race conditions successfully many times until I ran into an issue.
Kranar|2 years ago
At any rate, test_asyncio contains a lot of tests that involve threads and specifically thread safety between coroutines and those tests fail. As far as async I/O and threads being distinct, I mean sure that is true of a lot of features but people mix features together and mixing asyncio with threads will not work with this particular release.
neilkk|1 year ago
> small threaded programs had been run successfully
The second obviously contradicts the first, doesn't it?
> mixing asyncio with threads will not work with this particular release.
That's a very different claim to the first, and one that no longer conflicts with the second, isn't it?