Jason Novinger@programming.devM to Python@programming.dev · 10 months agoDon't use Python's propertywww.b-list.orgexternal-linkmessage-square6fedilinkarrow-up115arrow-down13
arrow-up112arrow-down1external-linkDon't use Python's propertywww.b-list.orgJason Novinger@programming.devM to Python@programming.dev · 10 months agomessage-square6fedilink
minus-squareTroy@lemmy.calinkfedilinkarrow-up19arrow-down1·10 months agoTl;dr: don’t use @property during design, it’s almost certainly the wrong pattern. But use it to retrofit a method to a value.
minus-squaresugar_in_your_tea@sh.itjust.workslinkfedilinkarrow-up2·10 months agoYup. I pretty much only use it if I need to ensure new values are valid or provide a default value. I do the same in other languages, like C# and JavaScript. Properties are cool, but should be quite rare.
Tl;dr: don’t use @property during design, it’s almost certainly the wrong pattern. But use it to retrofit a method to a value.
Yup. I pretty much only use it if I need to ensure new values are valid or provide a default value.
I do the same in other languages, like C# and JavaScript. Properties are cool, but should be quite rare.