Y
Hacker News
new
|
ask
|
show
|
jobs
by
yen223
2868 days ago
Python has proper threads, and they're anything but simple.
1 comments
toast0
2866 days ago
Python threads aren't simple, because of the shared everything model python uses, so any variable access requires the GIL. Shared nothing threads are much simpler to work with.
link