Formally, the lambda body can contain literals, identifiers, and operators. Why doesn’t Python understand the lambda body for such property implementation?
class Test:
test = property(
lambda self: self.__test,
lambda self, what: self.__test := what,
None,
'The property on lambdas')