On Tue, Mar 11, 2008 at 11:00 AM, Robert Rawlins
<[EMAIL PROTECTED]> wrote:

> I want to be able to check if a class has a certain property in its 'self'
> scope, what's the best way to do this?

>>> class Spam(object):
...     def egg(self):
...         if hasattr(self, 'chips'): print 'got chips!'
...
>>> spam = Spam()
>>> spam.egg()
>>> spam.chips = 'beans'
>>> spam.egg()
got chips!

-- 
Cheers,
Simon B.
[EMAIL PROTECTED]
http://www.brunningonline.net/simon/blog/
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to