5
votes
2answers
159 views
How and when to appropriately use weakref in Python
I have some code where instances of classes have parent<->child references to each other, e.g.:
class Node(object):
def __init__(self):
self.parent = None
self.children = {}
def …
