I have been trying to understand how python weak reference list's/dictionary's work and have been reading the documentation for it as well, however i cannot seem to figure out how they work and what they can be used for. Could anyone give me a basic example of what they do/explanation of how they work? It would be very much appreciated.
Using Thomas's code, when i substitute obj for [1,2,3] it throws:
Traceback (most recent call last):
File "C:/Users/nonya/Desktop/test.py", line 9, in <module>
r = weakref.ref(obj)
TypeError: cannot create weak reference to 'list' object