Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(2) | Call(2) | Derive(0) | Import(0)
x.__ne__(y) <==> x!=y
src/u/n/unknown-horizons-HEAD/horizons/util/python/weaklist.py unknown-horizons(Download)
def __ne__(self, other): if isinstance(other, WeakList): other = list(other) return list.__ne__(list(self), other)
src/c/o/collection-json-0.1.0/collection_json.py collection-json(Download)
def __ne__(self, other): """Return True if both instances are not equivalent.""" return (super(Array, self).__ne__(other) or list.__ne__(self, other))