Mercurial > hg > pyloader
view tests/objects.py @ 13:eb81d6943f2e
add another dummy object
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Fri, 27 May 2011 07:22:40 -0700 |
parents | ff272dcd5cd8 |
children | 0bea5297c156 |
line wrap: on
line source
""" test objects """ def stringsort(*strings): return ''.join(sorted(''.join(strings))) class Foo(object): def __init__(self, a, b): self.factor = a*100 + b def __call__(self, number): return number * self.factor