﻿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
28562	DecimalValidator raises ValidationError for decimals in scientific notation	Maksim Iakovlev	Josh Schneier	"{{{
>>> validator = DecimalValidator(20, 2)
>>> value = Decimal('7.42403889818E+17')
>>> try:
...     validator(value)
... except Exception as e:
...     print(e)
... 
[u'Ensure that there are no more than 2 decimal places.']
>>> value = Decimal(742403889818000000)
>>> try:
...     validator(value)
... except Exception as e:
...     print(e)
... 
>>> 
}}}
"	Bug	closed	Core (Other)	dev	Normal	fixed		Tim Martin	Ready for checkin	1	0	0	0	0	0
