Should the objects container of a Selector be shared when check_on_set is False?
import param
class P(param.Parameterized):
s = param.Selector(default=1, objects=[1, 2], check_on_set=False)
pa = P(s=3)
pb = P(s=4)
p = P()
print(p.param.s.objects)
# [1, 2, 3, 4]
Should the
objectscontainer of aSelectorbe shared whencheck_on_setisFalse?