I ran into some code and was wondering what it does. I was trying to search the site for a similar question but didn't find anything about this specific question.
class Foo:
def __init__(self, data):
Foo.latest = self
self.data = data
What does the .latest
statement do?