On Thu, 2008-09-11 at 15:36 +0800, Eric Abrahamsen wrote:
> I'm fooling around with comparing instances of different models,  
> trying to make a unified stream of instances that can be sorted by  
> date according to a certain datetime attribute on each model. I  
> thought I'd define a __cmp__ method on each model in question, that  
> would provide the appropriate attribute, rather than writing a sort  
> key function. I started off just comparing instances of different  
> models, to see what would happen, and found that some instances  
> evaluate to 'greater than' other instances, but I don't know what the  
> criteria is. It's not foreign key, and looking at the source I don't  
> see anything defined for Model except for __eq__ and __ne__. Can  
> someone enlighten?

The "object" type/class has a __cmp__ method, essentially. It's
comparing id() of the instances. Having some kind of natural ordering on
models isn't something Django can do by default, since it's highly
domain dependent. Also, we need to define __eq__ on models so that
models with the same primary key of the same type hash as equal. That
means you can use model instances as dictionary keys, for example.

Defining your own __lt__ and __gt__ methods is going to mess with that a
bit unless you're careful, so probably isn't recommend (it's going to be
confusing if "not a<b and not b<a" doesn't mean "a==b").

Regards,
Malcolm

> 
> Thanks,
> Eric
> 
> > 
> 


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to