summaryrefslogtreecommitdiff
path: root/tests/examplefiles/pycon_test.pycon
diff options
context:
space:
mode:
Diffstat (limited to 'tests/examplefiles/pycon_test.pycon')
-rw-r--r--tests/examplefiles/pycon_test.pycon5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/examplefiles/pycon_test.pycon b/tests/examplefiles/pycon_test.pycon
index ff702864..9c4fc3d3 100644
--- a/tests/examplefiles/pycon_test.pycon
+++ b/tests/examplefiles/pycon_test.pycon
@@ -9,6 +9,9 @@ KeyboardInterrupt
>>> 1/0
Traceback (most recent call last):
-...
+ ...
ZeroDivisionError
+>>> 1/0 # this used to swallow the traceback
+Traceback (most recent call last):
+ ...