@[email protected] to Programmer [email protected] • 2 years agoLemmylemmy.worldimagemessage-square77fedilinkarrow-up1230arrow-down16
arrow-up1224arrow-down1imageLemmylemmy.world@[email protected] to Programmer [email protected] • 2 years agomessage-square77fedilink
minus-square@[email protected]linkfedilink28•edit-22 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-squareRimorsolinkfedilink21•2 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: pass
We are not savages now we use
with suppress(Exception): > 100 lines nonsense