Admiral Patrick@dubvee.org to Programmer Humor@programming.devEnglish · 9 days agoexitdubvee.orgimagemessage-square7linkfedilinkarrow-up19arrow-down10
arrow-up19arrow-down1imageexitdubvee.orgAdmiral Patrick@dubvee.org to Programmer Humor@programming.devEnglish · 9 days agomessage-square7linkfedilink
minus-squarem_f@discuss.onlinelinkfedilinkEnglisharrow-up2·9 days agoThe era of pedantry is finally over: Direct support for REPL-specific commands like help, exit, and quit, without the need to call them as functions.
minus-squaredormedas@lemmy.dormedas.comlinkfedilinkarrow-up2·9 days agoFINALLY! This has always annoyed me. If you’re gonna go through all the trouble of identifying that I want to exit, just DO it.
minus-squarewise_pancake@lemmy.calinkfedilinkarrow-up1·edit-29 days agoIt’s not really much extra effort though They just added so e text to the __repr__ method on the exit callable object That’s much easier than figuring out if your running this interactively and trying to figure out if this is going to break stuff.
The era of pedantry is finally over:
FINALLY! This has always annoyed me. If you’re gonna go through all the trouble of identifying that I want to exit, just DO it.
It’s not really much extra effort though
They just added so e text to the
__repr__
method on theexit
callable objectThat’s much easier than figuring out if your running this interactively and trying to figure out if this is going to break stuff.