diff --git a/requests/structures.py b/requests/structures.py index a1759137..3aa090e8 100644 --- a/requests/structures.py +++ b/requests/structures.py @@ -108,6 +108,9 @@ class CaseInsensitiveDict(collections.MutableMapping): def __repr__(self): return '%s(%r)' % (self.__class__.__name__, dict(self.items())) + def __str__(self): + return str(dict(self.items())) + class LookupDict(dict): """Dictionary lookup object."""