mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-17 01:51:39 +09:00
10 lines
161 B
Python
10 lines
161 B
Python
|
|
|
|
try:
|
|
raise BaseException()
|
|
except BaseException as ex:
|
|
print(ex)
|
|
print(type(ex))
|
|
# print(ex.__traceback__)
|
|
# print(type(ex.__traceback__))
|