﻿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
28310	(form) RangeFields should handle (None, None) better.	Matthew Schinckel	nobody	"When you clean a RangeField, and pass it in ('', ''), or (None, None), it falls through to the MultiValueField handling, which, when all values are empty, treats the cleaned value as empty.

https://github.com/django/django/blob/master/django/forms/fields.py#L992

Thus:


{{{
FloatRangeField().clean([None, None])
}}}

returns `None`, when it really should return FloatRange(None, None).

There is a very large difference between these.
"	Uncategorized	new	Uncategorized	1.11	Normal				Unreviewed	0	0	0	0	0	0
