summaryrefslogtreecommitdiff
path: root/tests/examplefiles/pycon_test.pycon
blob: 9c4fc3d32790367cb651417289b9a0aff03a7afc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
>>> :
  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):
   ...