summaryrefslogtreecommitdiff
path: root/django/forms
diff options
context:
space:
mode:
Diffstat (limited to 'django/forms')
-rw-r--r--django/forms/utils.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/django/forms/utils.py b/django/forms/utils.py
index 3a86f419df..59d70178f4 100644
--- a/django/forms/utils.py
+++ b/django/forms/utils.py
@@ -133,9 +133,6 @@ class ErrorList(UserList, list):
def __eq__(self, other):
return list(self) == other
- def __ne__(self, other):
- return list(self) != other
-
def __getitem__(self, i):
error = self.data[i]
if isinstance(error, ValidationError):