From: Thomas Allen on
Is that possible?

class A(object):
@staticmethod
def set_b(x):
# A.b = x, without knowing A is "A"
pass

Thomas
From: Thomas Allen on
Ah ha, @classmethod.

On Apr 30, 3:47 pm, Thomas Allen <thomasmal...(a)gmail.com> wrote:
> Is that possible?
>
> class A(object):
>   @staticmethod
>   def set_b(x):
>     # A.b = x, without knowing A is "A"
>     pass
>
> Thomas