themusicman@lemmy.world to Programmer Humor@lemmy.ml · 1 year agoLemmylemmy.worldimagemessage-square59fedilinkarrow-up1219arrow-down16cross-posted to: [email protected]
arrow-up1213arrow-down1imageLemmylemmy.worldthemusicman@lemmy.world to Programmer Humor@lemmy.ml · 1 year agomessage-square59fedilinkcross-posted to: [email protected]
minus-squarecsm10495@sh.itjust.workslinkfedilinkarrow-up17arrow-down1·edit-21 year 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-up11·1 year 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: pass
We are not savages now we use
with suppress(Exception): > 100 lines nonsense