On 20/07/06, Christopher Spears <[EMAIL PROTECTED]> wrote: > def __cmp__(self): [...] > I am confused by this error because I modified __cmp__ > in the Card class to take two arguments. Am I missing > something here?
You haven't defined it that way in the code you posted..
I presume you meant to type:
def __cmp__(self, other)
?
--
John.
_______________________________________________
Tutor maillist - [email protected]
http://mail.python.org/mailman/listinfo/tutor
