What's supposed to happen in this situation? ########################################## class Person(object): def __init__(self): pass j = Person() john = j jack = j ########################################## What single name should we get back from the single Person object here? "j", "john", or "jack"?