From 3cd7755ec6b421c8ac4ef8903be9781ba015b3ab Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Mon, 5 Dec 2005 03:39:18 +0000 Subject: [PATCH] Fixed #982 -- Added '__ne__' support for Django models, which apparently wasn't working on Python 2.3 (?) git-svn-id: http://code.djangoproject.com/svn/django/trunk@1547 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/core/meta/__init__.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/django/core/meta/__init__.py b/django/core/meta/__init__.py index 1d58201b28..3aaaad576b 100644 --- a/django/core/meta/__init__.py +++ b/django/core/meta/__init__.py @@ -729,6 +729,7 @@ class ModelBase(type): # Create the default class methods. attrs['__init__'] = curry(method_init, opts) attrs['__eq__'] = curry(method_eq, opts) + attrs['__ne__'] = curry(method_ne, opts) attrs['save'] = curry(method_save, opts) attrs['save'].alters_data = True attrs['delete'] = curry(method_delete, opts) @@ -978,6 +979,9 @@ def method_init(opts, self, *args, **kwargs): def method_eq(opts, self, other): return isinstance(other, self.__class__) and getattr(self, opts.pk.attname) == getattr(other, opts.pk.attname) +def method_ne(opts, self, other): + return not method_eq(opts, self, other) + def method_save(opts, self): # Run any pre-save hooks. if hasattr(self, '_pre_save'):