Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(1) | Call(1) | Derive(0) | Import(0)
L.__reversed__() -- return a reverse iterator over the list
src/u/n/unknown-horizons-HEAD/horizons/util/python/weaklist.py unknown-horizons(Download)
def __reversed__(self): return iter([i() for i in list.__reversed__(self)]) ## Emulating numeric types