Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

raising_self.py 213B

12345678910
  1. # pylint: disable=missing-docstring
  2. class MultiException(Exception):
  3. def __init__(self):
  4. Exception.__init__(self)
  5. def return_self(self):
  6. return self
  7. raise MultiException().return_self()