Lichen

Annotated tests/operators.py

627:05ad7964265c
2017-02-27 Paul Boddie Merged convenience macro changes.
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