What Changes with No-GIL
CPU-bound multithreaded Python code can now actually run in parallel. Libraries like NumPy that release the GIL during C code already benefited from threading; the change helps pure Python parallelism. Expect async frameworks and scientific computing libraries to be the first to gain.