Eric Snow added the comment:

Think of threading.local this way: instances of threading.local are shared 
between all the threads, but the effective "__dict__" of each instance is 
per-thread.  Basically, the object stores a dict for each thread.  In 
__getattribute__, __setattr__, and __delattr__ it swaps the dict for the 
current thread into place and then does proceeds normally.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue24020>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to