#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...