When you're debugging and use sys.exit() in Python but forget to import sys but the program exits anyway which is what you originally wanted.
Traceback (most recent call last):
File "./status.py", line 14, in <module>
sys.exit()
NameError: name 'sys' is not defined
Conversation
Replying to
sys.exit() when you have actually imported sys is the Irish exit of sys.exit()
1
5

