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.

inconsistent_mro.py 198B

123456789
  1. """Tests for inconsistent-mro."""
  2. # pylint: disable=missing-docstring,too-few-public-methods,no-init
  3. class Str(str):
  4. pass
  5. class Inconsistent(str, Str): # [inconsistent-mro]
  6. pass