In the context of doubly-linked lists, what are weakref's ref
, proxy
, ... good for, given that Python is able to detect cycles and garbage-collect them anyway?
I think I read that weakref was specifically created to break allocation cycles but is it still necessary to use it?