diff -r e440e94a874b -r cf4b80992451 thirdparty/google_appengine/google/appengine/api/validation.py --- a/thirdparty/google_appengine/google/appengine/api/validation.py Mon Sep 07 20:26:39 2009 +0200 +++ b/thirdparty/google_appengine/google/appengine/api/validation.py Mon Sep 07 20:27:37 2009 +0200 @@ -919,7 +919,9 @@ 'but found \'%s\'.' % value) for item in value: - if not isinstance(item, self.constructor): + if isinstance(self.constructor, Validator): + item = self.constructor.Validate(item) + elif not isinstance(item, self.constructor): raise ValidationError('Repeated items must be %s, but found \'%s\'.' % (str(self.constructor), str(item)))