4.2.0 - validation lib improvements
-
Removed the useless 'strict' length validators: removed
min_len_strict
andmax_len_strict
invalidate
entry point, and removedstrict
argument invalidation_lib
'sminlen
andmaxlen
. Indeed length is an integer by python framework definition, so it is always more compact to do +1 or -1 to the number. Fixes #29. -
New
empty
andnon_empty
built-in validators invalidation_lib
. Newempty
argument invalidate
. Fixes #31.
See documentation page for details.