Update of CHANGELOG

This commit is contained in:
Miroslav Stampar
2019-05-10 10:21:42 +02:00
parent 32076c5ca6
commit 1ae2b14b39
3 changed files with 14 additions and 2 deletions

View File

@@ -120,7 +120,7 @@ class OrderedDict(dict, DictMixin):
if isinstance(other, OrderedDict):
if len(self) != len(other):
return False
for p, q in zip(self.items(), other.items()):
for p, q in zip(self.items(), other.items()):
if p != q:
return False
return True