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_e0204.py 383B

12345678910111213141516171819
  1. """check for method without self as first argument
  2. """
  3. from __future__ import print_function
  4. __revision__ = 0
  5. class Abcd(object):
  6. """dummy class"""
  7. def __init__(truc):
  8. """method without self"""
  9. print(1)
  10. def abdc(yoo):
  11. """another test"""
  12. print(yoo)
  13. def edf(self):
  14. """just another method"""
  15. print('yapudju in', self)