summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSergey Fedoseev <fedoseev.sergey@gmail.com>2017-07-12 15:18:49 +0500
committerTim Graham <timograham@gmail.com>2017-07-12 09:11:48 -0400
commit30f334cc58e939c7d9bd8455c80bd066fbde9f2b (patch)
tree8905fc2e141a4bd8085102226d25e31afcf05049 /docs
parentfe7b4568255ae1f77c180404631d81ba6b2d996d (diff)
[1.11.x] Fixed #28389 -- Fixed pickling of LazyObject on Python 2 when wrapped object doesn't have __reduce__().
Partial revert of 35355a4ffedb2aeed52d5fe3034380ffc6a438db.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.11.4.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.11.4.txt b/docs/releases/1.11.4.txt
index 2383ad6a17..2cd093335e 100644
--- a/docs/releases/1.11.4.txt
+++ b/docs/releases/1.11.4.txt
@@ -15,3 +15,6 @@ Bugfixes
* Fixed ``QuerySet.union()`` and ``difference()`` when combining with
a queryset raising ``EmptyResultSet`` (:ticket:`28378`).
+
+* Fixed a regression in pickling of ``LazyObject`` on Python 2 when the wrapped
+ object doesn't have ``__reduce__()`` (:ticket:`28389`).