pikapython/examples/builtins/init_raise.py
2023-09-23 17:59:40 +08:00

8 lines
64 B
Python

class Test:
def __init__(self):
raise
t = Test()