Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(9) | Call(9) | Derive(0) | Import(0)
x.__le__(y) <==> x<=y
src/u/n/unknown-horizons-HEAD/horizons/util/python/weaklist.py unknown-horizons(Download)
def __le__(self, other): if isinstance(other, WeakList): other = list(other) return list.__le__(list(self), other)
src/g/o/golismero-2.0.3-1/thirdparty_libs/nltk/tree.py golismero(Download)
def __le__(self, other): if not isinstance(other, Tree): return False return self.node <= other.node or list.__le__(self, other) def __gt__(self, other): if not isinstance(other, Tree): return True
src/b/r/Brill-POS-Tagger-for-Turkish-HEAD/TirilBrillTagger/lib/nltk/tree.py Brill-POS-Tagger-for-Turkish(Download)
def __le__(self, other): if not isinstance(other, Tree): return False return self.node <= other.node or list.__le__(self, other) def __gt__(self, other): if not isinstance(other, Tree): return True
src/g/o/golismero-HEAD/thirdparty_libs/nltk/tree.py golismero(Download)
def __le__(self, other): if not isinstance(other, Tree): return False return self.node <= other.node or list.__le__(self, other) def __gt__(self, other): if not isinstance(other, Tree): return True
src/b/o/bolinas-HEAD/lib/tree.py bolinas(Download)
def __le__(self, other): if not isinstance(other, Tree): return False return self.node <= other.node or list.__le__(self, other) def __gt__(self, other): if not isinstance(other, Tree): return True
src/c/l/clojure-nltk-HEAD/resources/nltk/tree.py clojure-nltk(Download)
def __le__(self, other): if not isinstance(other, Tree): return False return self.node <= other.node or list.__le__(self, other) def __gt__(self, other): if not isinstance(other, Tree): return True
src/n/l/nltk-2.0.4/nltk/tree.py nltk(Download)
def __le__(self, other): if not isinstance(other, Tree): return False return self.node <= other.node or list.__le__(self, other) def __gt__(self, other): if not isinstance(other, Tree): return True
src/d/i/disco-dop-0.4/discodop/tree.py disco-dop(Download)
def __le__(self, other): if not isinstance(other, Tree): return False return self.label <= other.label or list.__le__(self, other)
src/d/i/disco-dop-HEAD/discodop/tree.py disco-dop(Download)
def __le__(self, other): if not isinstance(other, Tree): return False return self.label <= other.label or list.__le__(self, other)