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"?
_______________________________________________
Tutor maillist - [email protected]
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor
