|
|
|
|
|
by aardvark179
1061 days ago
|
|
Threading in Python is fine if your threads are io bound or spend their time in a C extension which releases the GIL, if you are bound then the GIL means effectively one thread can run at a time and you gain no advantage from multiple threads. |
|