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_w0611.py 445B

12345678910111213141516171819202122232425
  1. """check unused import
  2. """
  3. # pylint: disable=no-absolute-import
  4. from __future__ import print_function
  5. import os
  6. import sys
  7. class NonRegr(object):
  8. """???"""
  9. def __init__(self):
  10. print('initialized')
  11. def sys(self):
  12. """should not get sys from there..."""
  13. print(self, sys)
  14. def dummy(self, truc):
  15. """yo"""
  16. return self, truc
  17. def blop(self):
  18. """yo"""
  19. print(self, 'blip')