Robin Becker <robin at jessikat.fsnet.co.uk> writes: > What's the correct incantation to get a weak reference to a tuple? The > rather obvious wrapper approach fails as the wrapper dies immediately > > ie weakref.ref(Wrapper((....))) What is 'Wrapper'? Tuples are not weakly-referencable, unless you change the source code of tupleobject.c. Regards, Martin