1
0
mirror of https://github.com/django/django.git synced 2025-10-23 21:59:11 +00:00

Improved performance of DecimalField.

strip() is unnecessary because decimal.Decimal() strips the input value.
This commit is contained in:
David Smith
2021-01-16 16:49:02 +00:00
committed by GitHub
parent 88e972e46d
commit e58f79c535

View File

@@ -343,9 +343,8 @@ class DecimalField(IntegerField):
return None
if self.localize:
value = formats.sanitize_separators(value)
value = str(value).strip()
try:
value = Decimal(value)
value = Decimal(str(value))
except DecimalException:
raise ValidationError(self.error_messages['invalid'], code='invalid')
return value