diff options
author | Georg Brandl <georg@python.org> | 2014-10-07 13:44:29 +0200 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-10-07 13:44:29 +0200 |
commit | 9cbc7803dd8e7826393721fe4acbd702843e131c (patch) | |
tree | 6c417b6d4a454c5fa3e00c63bd10b045a47ad068 /tests/examplefiles/pycon_test.pycon | |
parent | 576280a4aa6fdb54a6d9ca812ccefa69d2ad9750 (diff) | |
download | pygments-9cbc7803dd8e7826393721fe4acbd702843e131c.tar.gz |
Closes #874: do not swallow incomplete tracebacks in the Python console lexer.
Diffstat (limited to 'tests/examplefiles/pycon_test.pycon')
-rw-r--r-- | tests/examplefiles/pycon_test.pycon | 5 |
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): + ... |