On Jan 14, 1:23 pm, Rick Johnson <[email protected]> wrote: > def $method(self):pass > self.@instanceveriable > self.@@classvariable
Actually, class level methods can be accessed through ClassIdentifier.method, and instance methods through instanceidentifier.instancemethod. So decorating methods becomes moot. -- http://mail.python.org/mailman/listinfo/python-list
