from weakref import proxy class List(list): pass s = List([10, 20, 30, 40]) p = proxy(s) print list(reversed(p))