Let's say I have a list called, alist. If I pass alist to a function, how can I get the name of it?
alist = range(10)
def afunction(list):
listName = list.__name__ (fails for a list object)
--
http://mail.python.org/mailman/listinfo/python-list
