Fixed #34014 -- Fixed DecimalValidator validating 0 in positive exponent scientific notation.
Thanks Shiplu Mokaddim for the report.
This commit is contained in:
parent
c11336cd99
commit
ae509f8f08
|
@ -486,8 +486,10 @@ class DecimalValidator:
|
|||
self.messages["invalid"], code="invalid", params={"value": value}
|
||||
)
|
||||
if exponent >= 0:
|
||||
# A positive exponent adds that many trailing zeros.
|
||||
digits = len(digit_tuple) + exponent
|
||||
digits = len(digit_tuple)
|
||||
if digit_tuple != (0,):
|
||||
# A positive exponent adds that many trailing zeros.
|
||||
digits += exponent
|
||||
decimals = 0
|
||||
else:
|
||||
# If the absolute value of the negative exponent is larger than the
|
||||
|
|
|
@ -548,6 +548,7 @@ TEST_DATA = [
|
|||
Decimal("70E-6"),
|
||||
ValidationError,
|
||||
),
|
||||
(DecimalValidator(max_digits=2, decimal_places=1), Decimal("0E+1"), None),
|
||||
# 'Enter a number.' errors
|
||||
*[
|
||||
(
|
||||
|
|
Loading…
Reference in New Issue