init_raise.py 64 B

1234567
  1. class Test:
  2. def __init__(self):
  3. raise
  4. t = Test()