Lichen

Annotated tests/operators.py

813:a80de062b595
2017-04-11 Paul Boddie Expanded the download documentation and added a changelog page.
paul@2 1
import operator
paul@2 2
paul@2 3
def f(a, op, b):
paul@2 4
    return op(a, b)
paul@2 5
paul@214 6
print f(1, operator.add, 2) # 3
paul@214 7
print f(1, operator.sub, 2) # -1