A class question

Donn Ingle donn.ingle at gmail.com
Sun Oct 28 06:01:57 EDT 2007


Hello,

Is there a way I can, for debugging, access the instance variable name from
within a class?
E.g:
Class X: 
 def debug(self):
  print "My instance var is %s" % (some magic Python stuff)

So that:
>>>x = X()
>>>x.debug()
>>>My Instance var is x

( Without passing the name in like: x=X(name="x") ) 

Thx.
\d




More information about the Python-list mailing list