summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorBaptiste Mispelon <bmispelon@gmail.com>2021-12-08 14:46:22 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2021-12-08 20:33:03 +0100
commitcb383753c0e0eb52306e1024d32a782549c27e61 (patch)
tree0ce4810857634359794caca27a8feea9543b71bf /docs
parent8a4e5067605e608c3fcbb5ca11e0019eac8b40aa (diff)
Fixed #33346 -- Fixed SimpleTestCase.assertFormsetError() crash on a formset named "form".
Thanks OutOfFocus4 for the report. Regression in 456466d932830b096d39806e291fe23ec5ed38d5.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/4.0.1.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/releases/4.0.1.txt b/docs/releases/4.0.1.txt
index d5a674778e..fa4ebe826f 100644
--- a/docs/releases/4.0.1.txt
+++ b/docs/releases/4.0.1.txt
@@ -9,4 +9,6 @@ Django 4.0.1 fixes several bugs in 4.0.
Bugfixes
========
-* ...
+* Fixed a regression in Django 4.0 that caused a crash of
+ :meth:`~django.test.SimpleTestCase.assertFormsetError` on a formset named
+ ``form`` (:ticket:`33346`).