Y
Hacker News
new
|
ask
|
show
|
jobs
by
chrisseaton
3644 days ago
I don't think the GIL is ever released while running Python code is it? So there is no parallelism between Python threads.
1 comments
poooogles
3644 days ago
You're forgetting multiprocessing. That manages to get round this by running multiple Python interpreters. Big problem is passing objects is dog slow as everything has to be pickled either way.
link