X-Git-Url: https://git.mdrn.pl/librarian.git/blobdiff_plain/1e0f8d82649a23f695333d5ef4588e8b60afbe99..5c8b83a904d5dd988c0bfd86729b91a1ac763164:/librarian/dcparser.py diff --git a/librarian/dcparser.py b/librarian/dcparser.py index 49a33d4..e2f91a0 100644 --- a/librarian/dcparser.py +++ b/librarian/dcparser.py @@ -44,6 +44,11 @@ class Person(object): def __eq__(self, right): return self.last_name == right.last_name and self.first_names == right.first_names + def __cmp__(self, other): + return cmp((self.last_name, self.first_names), (other.last_name, other.first_names)) + + def __hash__(self): + return hash((self.last_name, self.first_names)) def __unicode__(self): if len(self.first_names) > 0: