﻿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
13646	Wrong RE in comma_separated_int_list_re	aledr	nobody	"The actual RE validator in comma_separated_int_list_re for CommaSeparatedIntegerField will allow some kind of following values:


{{{
',,,' '1,,2,3,'
}}}


It is

{{{
comma_separated_int_list_re = re.compile('^[\d,]+$')
}}}

and should be:

{{{
comma_separated_int_list_re = re.compile('^[\d,]*\d$')
}}}
"	Bug	closed	Database layer (models, ORM)	1.2	Normal	wontfix	CommaSeparatedIntegerField	alexandre@…	Design decision needed	0	0	0	0	0	0
