mirror of
https://github.com/django/django.git
synced 2025-08-03 18:38:50 +00:00
Fixed #30651 -- Made __eq__() methods return NotImplemented for not implemented comparisons.
Changed __eq__ to return NotImplemented instead of False if compared to an object of the same type, as is recommended by the Python data model reference. Now these models can be compared to ANY (or other objects with __eq__ overwritten) without returning False automatically.
This commit is contained in:
parent
6475e6318c
commit
54ea290e5b
20 changed files with 71 additions and 33 deletions
|
@ -3,7 +3,7 @@ import re
|
|||
import types
|
||||
from datetime import datetime, timedelta
|
||||
from decimal import Decimal
|
||||
from unittest import TestCase
|
||||
from unittest import TestCase, mock
|
||||
|
||||
from django.core.exceptions import ValidationError
|
||||
from django.core.files.base import ContentFile
|
||||
|
@ -424,6 +424,7 @@ class TestValidatorEquality(TestCase):
|
|||
MaxValueValidator(44),
|
||||
MaxValueValidator(44),
|
||||
)
|
||||
self.assertEqual(MaxValueValidator(44), mock.ANY)
|
||||
self.assertNotEqual(
|
||||
MaxValueValidator(44),
|
||||
MinValueValidator(44),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue