returning a value from a thread

Jeff Epler jepler at unpythonic.net
Mon Jul 19 11:59:57 EDT 2004


On Mon, Jul 19, 2004 at 01:48:01PM +0000, Antoon Pardon wrote:
> I still have a question. Is the GIL necessary even if there is
> no sharing of data between threads?

Data is always shared between threads.  One object you're almost certainly
sharing between threads is "None".  In the CPython implementation, None
has a refcount just like any other object, and that refcount is modified
in any statement involving None, and by the implicit "return None" at
the end of a function.

The GIL has the effect (among other things) of ensuring that changes to
refcounts are serialized among threads.

Jeff
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 196 bytes
Desc: not available
URL: <http://mail.python.org/pipermail/python-list/attachments/20040719/5e4300fb/attachment.sig>


More information about the Python-list mailing list