diff --git a/django/utils/datastructures.py b/django/utils/datastructures.py index 81e4b30f6e..2b98117fda 100644 --- a/django/utils/datastructures.py +++ b/django/utils/datastructures.py @@ -63,6 +63,9 @@ class MultiValueDict(dict): def __init__(self, key_to_list_mapping=()): dict.__init__(self, key_to_list_mapping) + def __repr__(self): + return "" % dict.__repr__(self) + def __getitem__(self, key): """ Returns the last data value for this key, or [] if it's an empty list;