rwnobrega@lemmy.world to Python · 2 years agoPython interfaces: abandon ABC and switch to Protocolslevelup.gitconnected.comexternal-linkmessage-square9fedilinkarrow-up114arrow-down13
arrow-up111arrow-down1external-linkPython interfaces: abandon ABC and switch to Protocolslevelup.gitconnected.comrwnobrega@lemmy.world to Python · 2 years agomessage-square9fedilink
minus-squareRiskablelinkfedilinkEnglisharrow-up2·2 years agoI wouldn’t say Protocols are more “fragile”… They’re more strict.
minus-squareplistig@feddit.delinkfedilinkEnglisharrow-up1·2 years agoThe opposite is true. If you have two interfaces that contain methods with the same name, then they have the same typing.Protocol. It is not possible to specify preconditions or contracts, as you would with abc.
I wouldn’t say Protocols are more “fragile”… They’re more strict.
The opposite is true. If you have two interfaces that contain methods with the same name, then they have the same
typing.Protocol
. It is not possible to specify preconditions or contracts, as you would with abc.