Change _store of CaseInsensitiveDict to OrderedDict

This commit is contained in:
Piotr Jurkiewicz
2016-04-14 18:10:50 +02:00
parent 4a716e0dfc
commit 4c04469cfb
+1 -1
View File
@@ -40,7 +40,7 @@ class CaseInsensitiveDict(collections.MutableMapping):
"""
def __init__(self, data=None, **kwargs):
self._store = dict()
self._store = collections.OrderedDict()
if data is None:
data = {}
self.update(data, **kwargs)