themusicman@lemmy.world to Programmer Humor@lemmy.ml · 3 years agoLemmylemmy.worldimagemessage-square73linkfedilinkarrow-up1372arrow-down18
arrow-up1364arrow-down1imageLemmylemmy.worldthemusicman@lemmy.world to Programmer Humor@lemmy.ml · 3 years agomessage-square73linkfedilink
minus-squarecsm10495@sh.itjust.workslinkfedilinkarrow-up37arrow-down1·3 years agoYou know at least it printed an error. I hate when things silently swallow errors. I’m looking at you, Python programmers: try: <100 lines of nonsense> except: pass
minus-squareRimorso@feddit.itlinkfedilinkarrow-up29·3 years agoWe are not savages now we use with suppress(Exception): > 100 lines nonsense
You know at least it printed an error. I hate when things silently swallow errors.
I’m looking at you, Python programmers:
try: <100 lines of nonsense> except: passWe are not savages now we use
with suppress(Exception): > 100 lines nonsense