Substituindo configuradores @property no Python 3

@someprop.setter
def someprop(self, value):
# do some other important things here
super(ParentClass, self.__class__).someprop.fset(self, value)