diff options
author | Georg Brandl <georg@python.org> | 2010-01-02 15:14:38 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-01-02 15:14:38 +0100 |
commit | c234f3d35f24c70516798fb8c39de87ea2981e1e (patch) | |
tree | c5a7ef5a5603e892e20bb4be46aa9bbafdc28f32 /tests/examplefiles/pycon_test.pycon | |
parent | 36a9e272623c09cd77dd3267f6a885a3d98fed49 (diff) | |
download | pygments-c234f3d35f24c70516798fb8c39de87ea2981e1e.tar.gz |
Fix mishandling of an ellipsis in place of the frames in a Python
console traceback, resulting in clobbered output.
Diffstat (limited to 'tests/examplefiles/pycon_test.pycon')
-rw-r--r-- | tests/examplefiles/pycon_test.pycon | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/examplefiles/pycon_test.pycon b/tests/examplefiles/pycon_test.pycon index 5ed452e1..ff702864 100644 --- a/tests/examplefiles/pycon_test.pycon +++ b/tests/examplefiles/pycon_test.pycon @@ -6,3 +6,9 @@ SyntaxError: invalid syntax >>> KeyboardInterrupt >>> + +>>> 1/0 +Traceback (most recent call last): +... +ZeroDivisionError + |