mirror of
https://github.com/django/django.git
synced 2025-09-28 13:04:54 +00:00
Fixed #15601 -- Corrected a weird typo. Thanks, jMyles
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15800 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
12a2a23100
commit
e494f88be0
1 changed files with 1 additions and 1 deletions
|
@ -397,7 +397,7 @@ class Model(object):
|
||||||
model = self.__class__
|
model = self.__class__
|
||||||
# The obvious thing to do here is to invoke super().__reduce__()
|
# The obvious thing to do here is to invoke super().__reduce__()
|
||||||
# for the non-deferred case. Don't do that.
|
# for the non-deferred case. Don't do that.
|
||||||
# On Python 2.4, there is something wierd with __reduce__,
|
# On Python 2.4, there is something weird with __reduce__,
|
||||||
# and as a result, the super call will cause an infinite recursion.
|
# and as a result, the super call will cause an infinite recursion.
|
||||||
# See #10547 and #12121.
|
# See #10547 and #12121.
|
||||||
defers = []
|
defers = []
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue