It seems that in Python, to declare a variable in a class, it is static (keeps its value in the next instances). What better way to get around this problem?
clas
You maybe want to change the class attribute:
class Foo(): number = 0 def set(self): Foo.number = 1
instead of overriding it!