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.

recursion_error_940.py 254B

12345678910111213
  1. # pylint: disable=missing-docstring, too-few-public-methods
  2. import datetime
  3. class NewDate(datetime.date):
  4. @classmethod
  5. def today(cls):
  6. return cls(2010, 1, 1)
  7. class Next(object):
  8. def __init__(self):
  9. datetime.date = NewDate