#35: validating date_select in rails
Solved!
If you use the date_select helper in Rails, setting all fields except for the year will result in MultiparameterAssignmentErrors. You can catch the exception, but it's kind of hard to catch it in a place where you can add errors to a model instance.
#11: Python formencode doesn't run validations when input is None
Using FormEncode 1.0.1, validations don't seem to run when an input value of None is provided to the FancyValidator.to_python or Schema.to_python method.
Example
validation schema:
class ValidToken(formencode.FancyValidator):
def _to_python(self, value...