aboutsummaryrefslogtreecommitdiff
path: root/requests/structures.py
diff options
context:
space:
mode:
authorSVN-Git Migration <python-modules-team@lists.alioth.debian.org>2015-10-08 13:41:33 -0700
committerSVN-Git Migration <python-modules-team@lists.alioth.debian.org>2015-10-08 13:41:33 -0700
commitd075cc8a1294c77c994dc5fd220ecb163ed31b93 (patch)
treed0f8ca4e6a5c55a074f348713048c560bb852d72 /requests/structures.py
parentca5cb993a3ce4fbdf50eebd31cb6b71eec9bc391 (diff)
downloadpython-requests-d075cc8a1294c77c994dc5fd220ecb163ed31b93.tar
python-requests-d075cc8a1294c77c994dc5fd220ecb163ed31b93.tar.gz
Imported Upstream version 2.3.0
Diffstat (limited to 'requests/structures.py')
-rw-r--r--requests/structures.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/requests/structures.py b/requests/structures.py
index a175913..9fd7818 100644
--- a/requests/structures.py
+++ b/requests/structures.py
@@ -106,8 +106,7 @@ class CaseInsensitiveDict(collections.MutableMapping):
return CaseInsensitiveDict(self._store.values())
def __repr__(self):
- return '%s(%r)' % (self.__class__.__name__, dict(self.items()))
-
+ return str(dict(self.items()))
class LookupDict(dict):
"""Dictionary lookup object."""