Re: [Python-3000] class style

2008-05-23 Thread Nick Coghlan
paul bedaride wrote: Hello, I'm new on this list The question you asked is more appropriate for comp.lang.python, not python-dev/python-3000 (which are about the development *of* Python, not development *with* Python). Regards, Nick. -- Nick Coghlan | [EMAIL PROTECTED] | Brisbane,

[Python-3000] class style

2008-05-23 Thread paul bedaride
Hello, I'm new on this list and it's just for ask a question about class-style in python 3000 because I don't understand for instance why in class Example(object): var1 = 'example' var2 = property(fget=lambda self: 'example') var1 seems to be linked to class and var2 to object. In more i