I'm just curious if anyone knows of a way to get the variable name of a reference passed to the function.
Put another way, in the example:
def MyFunc ( varPassed ):
print varPassed;
MyFunc(nwVar)
how would I get the string "nwVar" from inside of "MyFunc"? is it
possible?
--
http://mail.python.org/mailman/listinfo/python-list
