mirror of
https://github.com/django/django.git
synced 2025-08-30 23:37:50 +00:00
Fixed #23721 -- check_related_objects without calling __iter__
Refs #14334
This commit is contained in:
parent
00aa562884
commit
ae7cb992bc
2 changed files with 6 additions and 3 deletions
|
@ -408,6 +408,10 @@ class ObjectA(models.Model):
|
|||
def __str__(self):
|
||||
return self.name
|
||||
|
||||
def __iter__(self):
|
||||
# Ticket #23721
|
||||
assert False, 'type checking should happen without calling model __iter__'
|
||||
|
||||
|
||||
class ProxyObjectA(ObjectA):
|
||||
class Meta:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue