diff options
author | Maximilian Hils <git@maximilianhils.com> | 2014-09-04 21:21:03 +0200 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2014-09-04 21:21:03 +0200 |
commit | c2e74ef95c09216b0ee69987796e80ba01f75dab (patch) | |
tree | 0d3c0b2ccc88d420943a48e961c3f83e47e54ff5 /netlib/odict.py | |
parent | 4bf7f3c0ff5158cd178756bc2a414f506fb34e05 (diff) | |
parent | d9a731b23a930474adc35d6b4ebee68cd05a0940 (diff) | |
download | mitmproxy-c2e74ef95c09216b0ee69987796e80ba01f75dab.tar.gz mitmproxy-c2e74ef95c09216b0ee69987796e80ba01f75dab.tar.bz2 mitmproxy-c2e74ef95c09216b0ee69987796e80ba01f75dab.zip |
Merge branch 'master' into mitmproxy_issue_341
Diffstat (limited to 'netlib/odict.py')
-rw-r--r-- | netlib/odict.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/netlib/odict.py b/netlib/odict.py index a0e1f694..1e51bb3f 100644 --- a/netlib/odict.py +++ b/netlib/odict.py @@ -24,6 +24,9 @@ class ODict: def __eq__(self, other): return self.lst == other.lst + def __ne__(self, other): + return not self.__eq__(other) + def __iter__(self): return self.lst.__iter__() |