Codebase list ohcount / 71f18fd0-2918-4673-9432-32d77816000d/main test / src_dir / py1.py
71f18fd0-2918-4673-9432-32d77816000d/main

Tree @71f18fd0-2918-4673-9432-32d77816000d/main (Download .tar.gz)

py1.py @71f18fd0-2918-4673-9432-32d77816000d/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')