summaryrefslogtreecommitdiff
path: root/tests/examplefiles/pycon_test.pycon
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-01-02 15:14:38 +0100
committerGeorg Brandl <georg@python.org>2010-01-02 15:14:38 +0100
commitc234f3d35f24c70516798fb8c39de87ea2981e1e (patch)
treec5a7ef5a5603e892e20bb4be46aa9bbafdc28f32 /tests/examplefiles/pycon_test.pycon
parent36a9e272623c09cd77dd3267f6a885a3d98fed49 (diff)
downloadpygments-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.pycon6
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
+