pocketpy/tests/80_traceback.py
BLUELOVETH 1614502741 ...
...

...
2023-06-02 13:42:02 +08:00

10 lines
169 B
Python

import traceback
try:
a = {'123': 4}
b = a[6]
except KeyError:
s = traceback.format_exc()
assert s == r'''Traceback (most recent call last):
KeyError: 6'''