Example #1
0
 def validate_native(cls, value):
     return SimpleModel.validate_native(cls, value)
Example #2
0
 def validate_native(cls, value):
     return SimpleModel.validate_native(cls, value)
Example #3
0
File: string.py Project: plq/spyne
 def validate_native(cls, value):
     return (SimpleModel.validate_native(cls, value)
         and (value is None or (
             re_match_with_span(cls.Attributes, value)
         )))
Example #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)
         )))