I am a newbie in python. I recently created a small python interface and opened a thread in a button to read serial port data in a loop. Why is the ui interface stuck? Shouldn't it not affect the ui? Solve
Because GIL and cpython's multi-threading are only suitable for io wait scenarios, they will freeze when encountering CPU-intensive situations
Because GIL and cpython's multi-threading are only suitable for io wait scenarios, they will freeze when encountering CPU-intensive situations