79502213

Date: 2025-03-11 21:53:20
Score: 0.5
Natty:
Report link

Instead of defining do_EOF(), add a precmd hook that maps "EOF" to "exit":

def precmd(self, line):
    if line == "EOF":
        return "exit"
    return line
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: Jeff