Commit 11f8e296 authored by Jeremy Hylton's avatar Jeremy Hylton

Add a repr to MinPO

parent 2bf1da0f
......@@ -8,3 +8,6 @@ class MinPO(Persistent):
def __cmp__(self, aMinPO):
return cmp(self.value, aMinPO.value)
def __repr__(self):
return "MinPO(%s)" % self.value
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment