- "Same as :class:`OneOf` but values are uppercased before validation."
- def validate_python(self, value, state):
- return OneOf.validate_python(self, value.upper(), state)
+ """
+ Same as :class:`OneOf` but values are uppercased before validation.
+
+ Examples::
+
+ >>> uoo = UpOneOf(['A', 'B', 'C'])
+ >>> uoo.to_python('a')
+ 'A'
+ >>> uoo.to_python('B')
+ 'B'
+ >>> uoo.to_python('x')
+ Traceback (most recent call last):
+ ...
+ Invalid: Value must be one of: A; B; C (not 'X')
+ """
+
+ def _to_python(self, value, state):
+ return value.upper()