﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
29113	Simplify django.forms.formsets.all_valid() and clarify docstring	Дилян Палаузов	nobody	If in {{{django.forms.formsets.all_valid()}}} the calls to {{{formset.is_valid()}}} can be short-circuited, replace the body of the function with {{{return all(formset.is_valid() for formset in formsets)}}}.  Otherwise write as comment, that short-circuiting is not feasible and replace the {{{if not formset.is_valid(): valid = False}}} with {{{valid &= formset.is_valid()}}}	Cleanup/optimization	closed	Forms	dev	Normal	fixed			Accepted	1	0	0	0	0	0
