﻿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
2182	IntegerField gets bogus validator_list from parent class	James Bennett	Jacob	"django.forms.IntegerField is a subclass of django.forms.TextField; this is all well and good, and makes sense, except for the last line of IntegerField's `__init__`, which calls TextField's `__init__`; this adds 'hasNoNewlines' and 'isValidLength' to the IntegerField's validator_list. This will end up causing exceptions during validation because integers aren't iterable and don't have a length.

The solution to this looks like it will involve changing IntegerField's `__init__` to supply all the needed attributes without calling TextField's `__init__`, or possibly just sticking with what we have and culling the bad validators from `validator_list` after the fact,

"	defect	closed	Documentation	dev	normal	invalid			Unreviewed	0	0	0	0	0	0
