Antoine Pitrou <pit...@free.fr> added the comment:

> I think that if we were to call PyThread_set_key_value twice on the
> same key it's either an error, or we want the last version to be
> stored, not the old one.

Not necessarily. You can have several interpreters (and therefore several 
thread states) in a single thread, using Py_NewInterpreter(). It's used by 
mod_wsgi and probably other software. If you overwrite the old value with the 
new one, it may break such software.

Would it be possible to cleanup the autoTLS mappings in PyOS_AfterFork() 
instead?

----------

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

Reply via email to