summaryrefslogtreecommitdiff
path: root/requests/structures.py
diff options
context:
space:
mode:
authorKenneth Reitz <me@kennethreitz.com>2014-05-12 15:10:15 -0400
committerKenneth Reitz <me@kennethreitz.com>2014-05-12 15:10:15 -0400
commitc15a8f8a3d8fbe943dcae2603c4ceca7f99ff2bf (patch)
tree741c0ec08a0ea1b84ee3edb8a3375c60298d2f86 /requests/structures.py
parent5893cfcd90249a16d70bb829c23a78b690033c74 (diff)
downloadpython-requests-c15a8f8a3d8fbe943dcae2603c4ceca7f99ff2bf.tar.gz
CaseInsensitiveDict now looks like a normal dict
Diffstat (limited to 'requests/structures.py')
-rw-r--r--requests/structures.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/requests/structures.py b/requests/structures.py
index 3aa090e8..9fd78187 100644
--- a/requests/structures.py
+++ b/requests/structures.py
@@ -106,12 +106,8 @@ class CaseInsensitiveDict(collections.MutableMapping):
return CaseInsensitiveDict(self._store.values())
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."""