diff 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 diff
--- a/tests/objects.py	Fri May 27 07:19:17 2011 -0700
+++ b/tests/objects.py	Fri May 27 07:22:40 2011 -0700
@@ -4,3 +4,9 @@
 
 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