copacetic@discuss.tchncs.de to General Programming Discussion@lemmy.mlEnglish · 3 years agoThe best Python feature you cannot usewww.bitecode.devexternal-linkmessage-square1linkfedilinkarrow-up13arrow-down10
arrow-up13arrow-down1external-linkThe best Python feature you cannot usewww.bitecode.devcopacetic@discuss.tchncs.de to General Programming Discussion@lemmy.mlEnglish · 3 years agomessage-square1linkfedilink
minus-squareheeplr@feddit.delinkfedilinkEnglisharrow-up1·edit-23 years agoTL;DR Python optimizes “assert” statements out with -O or PYTHONOPTIMIZE set and some users seem to use it for stuff critical in production instead of raising cheaper Exceptions.
TL;DR
Python optimizes “assert” statements out with
-OorPYTHONOPTIMIZEset and some users seem to use it for stuff critical in production instead of raising cheaper Exceptions.