diff --git a/comtypes/client/dynamic.py b/comtypes/client/dynamic.py index def9e266..88b1b21f 100644 --- a/comtypes/client/dynamic.py +++ b/comtypes/client/dynamic.py @@ -73,11 +73,6 @@ def __enum(self): e = self._comobj.Invoke(-4) # DISPID_NEWENUM return e.QueryInterface(comtypes.automation.IEnumVARIANT) - def __cmp__(self, other): - if not isinstance(other, _Dispatch): - return 1 - return cmp(self._comobj, other._comobj) - def __hash__(self): return hash(self._comobj)