T
Thomas Allen
Is that possible?
class A(object):
@staticmethod
def set_b(x):
# A.b = x, without knowing A is "A"
pass
Thomas
class A(object):
@staticmethod
def set_b(x):
# A.b = x, without knowing A is "A"
pass
Thomas