Filip Gruszczyński wrote:
class Element(object):
       operations = "Element operations"


class Group(object):
       operations = "Group operations"


e = Element()
g = Group()

e.operations
'Element operations'
g.operations
'Group operations'

But this is the same as asking for a class,

The point is to put (and use) the information about what operations apply to instances in each class rather than in an external function.

--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to