Beispiel #1
0
 def validate_native(cls, value):
     return SimpleModel.validate_native(cls, value)
Beispiel #2
0
 def validate_native(cls, value):
     return SimpleModel.validate_native(cls, value)
Beispiel #3
0
 def validate_native(cls, value):
     return (SimpleModel.validate_native(cls, value)
         and (value is None or (
             re_match_with_span(cls.Attributes, value)
         )))
Beispiel #4
0
 def validate_native(cls, value):
     return (SimpleModel.validate_native(cls, value)
         and (value is None or (
             re_match_with_span(cls.Attributes, value)
         )))