|
|
|
|
|
by 12_throw_away
78 days ago
|
|
No, determinstic scheduling is not a property of async python. Yes, the stdlib asyncio event loop does have deterministic scheduling, but that's an implementation detail and I would not rely on it for anything critical. Other event loops - for instance trio [1] - explicitly randomize startup order so that you won't accidentally write code that relies on it. [1] https://github.com/python-trio/trio/issues/32 |
|
That sounds familiar...
https://stackoverflow.com/questions/39980323/are-dictionarie...