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.

genexp_in_class_scope.py 185B

123456
  1. # pylint: disable=W0232,R0903, missing-docstring
  2. """Class scope must be handled correctly in genexps"""
  3. class MyClass(object):
  4. var1 = []
  5. var2 = list(value*2 for value in var1)