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.

func_noerror_inner_classes.py 530B

123456789101112131415161718192021222324252627282930313233
  1. # pylint: disable=R0903
  2. """Backend Base Classes for the schwelm user DB"""
  3. __revision__ = "alpha"
  4. class Aaa(object):
  5. """docstring"""
  6. def __init__(self):
  7. self.__setattr__('a', 'b')
  8. def one_public(self):
  9. """docstring"""
  10. pass
  11. def another_public(self):
  12. """docstring"""
  13. pass
  14. class Bbb(Aaa):
  15. """docstring"""
  16. pass
  17. class Ccc(Aaa):
  18. """docstring"""
  19. class Ddd(Aaa):
  20. """docstring"""
  21. pass
  22. class Eee(Ddd):
  23. """docstring"""
  24. pass