Issue 9707: Reworked threading.local reference implementation (original) (raw)

Issue9707

Created on 2010-08-28 20:26 by pitrou, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
threadlocal.patch pitrou,2010-08-28 20:26
Messages (2)
msg115170 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2010-08-28 20:26
This is a reworked reference implementation of _threading_local without the __del__ quirks. The _patch() ugliness is unfortunately still needed because of a doctest checking that derived __slots__ attributes aren't actually thread-local. Note that users are unlikely to ever use this code in the real world, except perhaps with non-CPython implementations.
msg115811 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2010-09-07 22:06
Committed in r84607.
History
Date User Action Args
2022-04-11 14:57:05 admin set github: 53916
2010-09-07 22:06:45 pitrou set status: open -> closedresolution: fixedmessages: + stage: patch review -> resolved
2010-08-28 20:26:35 pitrou create