2016-12-27 08:10:47 -08:00

18 lines
257 B
Plaintext

>>> :
File "<stdin>", line 1
:
^
SyntaxError: invalid syntax
>>>
KeyboardInterrupt
>>>
>>> 1/0
Traceback (most recent call last):
...
ZeroDivisionError
>>> 1/0 # this used to swallow the traceback
Traceback (most recent call last):
...