Guido van Rossum schrieb: > Why can't you use call syntax, i.e. obj.prop(1, 2, 3)? Because I cannot set the property in this way: obj.prop(1, 2, 3) = "foo" Of course I know that obj.set_prop(1, 2, 3, "foo") would work.