diff options
author | Matth?us G. Chajdas <dev@anteru.net> | 2019-11-10 13:56:53 +0100 |
---|---|---|
committer | Matth?us G. Chajdas <dev@anteru.net> | 2019-11-10 13:56:53 +0100 |
commit | 1dd3124a9770e11b6684e5dd1e6bc15a0aa3bc67 (patch) | |
tree | 87a171383266dd1f64196589af081bc2f8e497c3 /tests/examplefiles/pycon_ctrlc_traceback | |
parent | f1c080e184dc1bbc36eaa7cd729ff3a499de568a (diff) | |
download | pygments-master.tar.gz |
Diffstat (limited to 'tests/examplefiles/pycon_ctrlc_traceback')
-rw-r--r-- | tests/examplefiles/pycon_ctrlc_traceback | 118 |
1 files changed, 0 insertions, 118 deletions
diff --git a/tests/examplefiles/pycon_ctrlc_traceback b/tests/examplefiles/pycon_ctrlc_traceback deleted file mode 100644 index 4998fd9c..00000000 --- a/tests/examplefiles/pycon_ctrlc_traceback +++ /dev/null @@ -1,118 +0,0 @@ -x = r""" ->>> import os ->>> print os -<module 'os' from '/file/path.py'> ->>> for x in range(10): -... y = x + 2 -... print(x) -... if x > 5: -... raise Exception -... -0 -1 -2 -3 -4 -5 -6 -Traceback (most recent call last): - File "<stdin>", line 5, in <module> -Exception ->>> ->>> while True: -... pass -... -^CTraceback (most recent call last): - File "<stdin>", line 1, in <module> -KeyboardInterrupt - ->>> class A(Exception):pass -... ->>> class B(Exception):pass -... ->>> try: -... try: -... raise A('first') -... finally: -... raise B('second') -... except A as c: -... print(c) -... -Traceback (most recent call last): - File "<stdin>", line 3, in <module> -__main__.A: first - -During handling of the above exception, another exception occurred: - -Traceback (most recent call last): - File "<stdin>", line 5, in <module> -__main__.B: second - ->>> x = - File "<stdin>", line 1 - x = - ^ -SyntaxError: invalid syntax ->>> - ->>> x = 3 ->>> with 5 as y: -... print(x + y) -... -8 - -# TODO -#>>> raise ValueError('multi\n line\ndetail') -#Traceback (most recent call last): -#........ -#ValueError: multi -# line -#detail - ->>> raise ValueError('multi\n line\ndetail') -Traceback (most recent call last): - .123 -ValueError: multi - line -detail - ->>> raise ValueError('multi\n line\ndetail') -Traceback (most recent call last): - ... -ValueError: multi - line -detail - ->>> raise ValueError('multi\n line\ndetail') -Traceback (most recent call last): - .... -ValueError: multi - line -detail - ->>> raise ValueError('multi\n line\ndetail') -Traceback (most recent call last): - .... -ValueError: multi - line -detail - ->>> raise ValueError('multi\n line\ndetail') -Traceback (most recent call last): - ... -ValueError: multi - line -detail - ->>> raise Exception -Traceback (most recent call last): - File "<stdin>", line 1, in <module> -Exception ->>> import somemodule ->>> somemodule.blah() -Traceback (most recent call last): - File "<stdin>", line 1, in <module> - File "/path/to/stuff/somemodule/blah.py", line 658, in blah - raise Exception('Hi.') -Exception: Hi. - |