aboutsummaryrefslogtreecommitdiffstats
path: root/netlib
diff options
context:
space:
mode:
Diffstat (limited to 'netlib')
-rw-r--r--netlib/certutils.py3
-rw-r--r--netlib/odict.py3
2 files changed, 6 insertions, 0 deletions
diff --git a/netlib/certutils.py b/netlib/certutils.py
index 18179917..84316882 100644
--- a/netlib/certutils.py
+++ b/netlib/certutils.py
@@ -285,6 +285,9 @@ class SSLCert:
def __eq__(self, other):
return self.digest("sha1") == other.digest("sha1")
+ def __ne__(self, other):
+ return not self.__eq__(other)
+
@classmethod
def from_pem(klass, txt):
x509 = OpenSSL.crypto.load_certificate(OpenSSL.crypto.FILETYPE_PEM, txt)
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__()