﻿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
26173	localize_input() shouldn't put thousands separator in boolean values	Marcin Markiewicz	Marcin Markiewicz	"django.utils.formats localize_input inserts thousands_separator into boolean values

The problem is in django.utils.formats localize_input that is used in widgets to render value

There is a check there like so:
    if isinstance(value, (decimal.Decimal, float, int, long)):
which evaluates to True for Booleans (because booleans are ints, see ""issubclass(bool, int)"")

This was reported: https://code.djangoproject.com/ticket/14807
but this is old closed history.

It touched us again, so maybe this time will be better to solve this
"	Bug	closed	Utilities		Normal	fixed			Accepted	0	0	0	0	1	0
