Commit 8fa7c5c9 by Dawn Pattison

Exclude collections.Mapping from allowable data types in ListField

parent dac1637b
......@@ -1461,7 +1461,7 @@ class ListField(Field):
"""
if html.is_html_input(data):
data = html.parse_html_list(data)
if not isinstance(data, (list, tuple, set)):
if isinstance(data, type('')) or isinstance(data, collections.Mapping) or not hasattr(data, '__iter__'):
self.fail('not_a_list', input_type=type(data).__name__)
if not self.allow_empty and len(data) == 0:
self.fail('empty')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment