show/hide this revision's text 2 added missing def

The one time I wrote a singleton in Python I used a class where all the member functions had the classmethod decorator.

class foo:
  x = 1

  @classmethod
  def increment(cls, y = 1)
    1):
    cls.x += y
show/hide this revision's text 1

The one time I wrote a singleton in Python I used a class where all the member functions had the classmethod decorator.

class foo:
  x = 1

  @classmethod
  increment(cls, y = 1)
    cls.x += y