With the recent change to email validator signature, this previously-correct usage now fails:
domain_whitelist = ['microsoft.com']
email('bill.gates@microsoft.com', domain_whitelist)
ValidationFailure(func=email, args={'reason': 'email() takes 1 positional argument but 2 were given', 'value': 'bill.gates@microsoft.com'})
But that's not a validation issue - it's a programming issue, and one that becomes difficult to track down when the form validation library is checking True/False and reporting an invalid email address.
When the error is not because of the input being validated, but rather due to the way the validator is called, we need to have exceptions raised.
With the recent change to email validator signature, this previously-correct usage now fails:
But that's not a validation issue - it's a programming issue, and one that becomes difficult to track down when the form validation library is checking True/False and reporting an invalid email address.
When the error is not because of the input being validated, but rather due to the way the validator is called, we need to have exceptions raised.