Codebase list ohcount / c865d4db-f4b2-4b3e-8e76-e6475c6514d2/main test / src_dir / py1.py
c865d4db-f4b2-4b3e-8e76-e6475c6514d2/main

Tree @c865d4db-f4b2-4b3e-8e76-e6475c6514d2/main (Download .tar.gz)

py1.py @c865d4db-f4b2-4b3e-8e76-e6475c6514d2/mainraw · history · blame

# some python code
# lorem
# ipsum
# foo

class Foo:
  """
  This is a foo class
  It doesn't do anything
  Therefore this doc comment is pointless
  """

  def __init__(self, bar):
    """short doc comment"""
    print(bar)

  def string(self):
    print('This is a string')