A multi-threading example of the python GIL

Viewed 5468

I've read a quite a bit about how "bad" this python GIL business is when writing multi-threaded code, but I've never seen an example. Could someone please give me a basic example of when the GIL causes problems when using threading.

Thanks!

1 Answers
Related