copacetic@discuss.tchncs.de to General Programming Discussion@lemmy.mlEnglish · 2 years agoThe best Python feature you cannot usewww.bitecode.devexternal-linkmessage-square1fedilinkarrow-up13arrow-down10
arrow-up13arrow-down1external-linkThe best Python feature you cannot usewww.bitecode.devcopacetic@discuss.tchncs.de to General Programming Discussion@lemmy.mlEnglish · 2 years agomessage-square1fedilink
minus-squareheeplr@feddit.delinkfedilinkEnglisharrow-up1·edit-22 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
-O
orPYTHONOPTIMIZE
set and some users seem to use it for stuff critical in production instead of raising cheaper Exceptions.