summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdam Johnson <me@adamj.eu>2017-06-04 22:58:24 +0100
committerTim Graham <timograham@gmail.com>2017-06-05 08:40:43 -0400
commited244199c72f5bbf33ab4547e06e69873d7271d0 (patch)
tree727afbd26e655449ebcd007fe5f64333dd2b9711 /docs
parent36f09c8a29eaad6a7e903ddc3ea1e8b5954ee67a (diff)
Fixed #28269 -- Fixed Model.__init__() crash on models with a field that has an instance only descriptor.
Regression in d2a26c1a90e837777dabdf3d67ceec4d2a70fb86.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.11.3.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.11.3.txt b/docs/releases/1.11.3.txt
index 15200fafd5..ed2bf31cf5 100644
--- a/docs/releases/1.11.3.txt
+++ b/docs/releases/1.11.3.txt
@@ -12,3 +12,6 @@ Bugfixes
* Removed an incorrect deprecation warning about a missing ``renderer``
argument if a ``Widget.render()`` method accepts ``**kwargs``
(:ticket:`28265`).
+
+* Fixed a regression causing ``Model.__init__()`` to crash if a field has an
+ instance only descriptor (:ticket:`28269`).