diff options
| author | e0ne <e0ne@e0ne.info> | 2013-09-13 18:11:48 +0300 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-04-08 13:55:17 -0400 |
| commit | 2aaa045c61a3d4b325f964aa01554107b47b9774 (patch) | |
| tree | 5b519e6adb79cdc10dfd0e4cca510e881aa1eaaa /docs | |
| parent | b9bfcd82f0995b3bdd97a1c2cffa1cdd47ebc3c4 (diff) | |
Fixed #13408 -- Deprecated silent unpacking exception passing in for template tag.
Thanks peterbe for the suggestion.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/internals/deprecation.txt | 3 | ||||
| -rw-r--r-- | docs/releases/1.8.txt | 6 |
2 files changed, 9 insertions, 0 deletions
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt index 49eaa90ccb..a0d3b8a80c 100644 --- a/docs/internals/deprecation.txt +++ b/docs/internals/deprecation.txt @@ -22,6 +22,9 @@ about each item can often be found in the release notes of two versions prior. * ``SimpleTestCase.urls`` will be removed. +* Using an incorrect count of unpacked values in the ``for`` template tag + will raise an exception rather than fail silently. + .. _deprecation-removed-in-1.9: 1.9 diff --git a/docs/releases/1.8.txt b/docs/releases/1.8.txt index 46bbbdbb3e..79b7168030 100644 --- a/docs/releases/1.8.txt +++ b/docs/releases/1.8.txt @@ -270,3 +270,9 @@ removed in Django 2.0. Use :func:`@override_settings(ROOT_URLCONF=...) Related to the previous item, the ``prefix`` argument to :func:`django.conf.urls.i18n.i18n_patterns` has been deprecated. Simply pass a list of :func:`django.conf.urls.url` instances instead. + +Using an incorrect count of unpacked values in the :ttag:`for` template tag +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Using an incorrect count of unpacked values in :ttag:`for` tag will raise an +exception rather than fail silently in Django 2.0. |
