Codebase list ohcount / 6ef9399e-69b6-464b-98a8-52915e284046/upstream test / src_dir / py1.py
6ef9399e-69b6-464b-98a8-52915e284046/upstream

Tree @6ef9399e-69b6-464b-98a8-52915e284046/upstream (Download .tar.gz)

py1.py @6ef9399e-69b6-464b-98a8-52915e284046/upstream

3581673
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
# 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')