MCPcopy Create free account
hub / github.com/PyMySQL/PyMySQL / __ne__

Method __ne__

pymysql/__init__.py:83–87  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

81
82class DBAPISet(frozenset):
83 def __ne__(self, other):
84 if isinstance(other, set):
85 return frozenset.__ne__(self, other)
86 else:
87 return other not in self
88
89 def __eq__(self, other):
90 if isinstance(other, frozenset):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected