﻿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
5199	FormSet uses incorrect logic for is_bound	David Blewett <david@…>	Adrian Holovaty	"The init logic of the FormSet is incorrect, and doesn't follow the logic of a Form:
http://code.djangoproject.com/browser/django/branches/newforms-admin/django/newforms/formsets.py#24
{{{
#!python
self.is_bound = data is not None and files is not None
}}}

vs.
http://code.djangoproject.com/browser/django/trunk/django/newforms/forms.py#L61
{{{
#!python
self.is_bound = data is not None or files is not None
}}}

The ""and"" in the FormSet code makes a FormSet that is passed data but no files set is_bound = False.
"		closed	Forms	newforms-admin		fixed	FormSet logic	david@…	Unreviewed	1	0	0	0	0	0
