summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorCarl Meyer <carl@oddbird.net>2014-11-22 22:26:58 -0700
committerCarl Meyer <carl@oddbird.net>2014-11-22 22:26:58 -0700
commit2d06c112d1b737578cd54b9193fce20d3bf10a6f (patch)
treece46c9f95b76f3981241edcde37b7829040f79ce /docs
parent8014001d9287d516c58be80ad71fb63593648b3d (diff)
Revert "[1.7.x] Fixed #23892 -- Made deconstructible classes forwards compatible"
This reverts commit 8014001d9287d516c58be80ad71fb63593648b3d. Adding kwargs to deconstructed objects does not achieve useful forward-compatibility in general, since the additional kwargs are silently dropped rather than having their expected effect. In fact, it can cause the failure to be more difficult to debug. Thanks Shai Berger for discussion.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.7.2.txt4
1 files changed, 0 insertions, 4 deletions
diff --git a/docs/releases/1.7.2.txt b/docs/releases/1.7.2.txt
index 18330dd16c..c9f69fe856 100644
--- a/docs/releases/1.7.2.txt
+++ b/docs/releases/1.7.2.txt
@@ -77,7 +77,3 @@ Bugfixes
* Fixed a crash in migrations when deleting a field that is part of a
``index/unique_together`` constraint (:ticket:`23794`).
-
-* Made the initializers of deconstructible classes, such as migration
- operations and validators, accept kwargs for forwards compatibility
- (:ticket:`23892`).