Lichen

tests/operators.py

83:caa13d1fb177
2016-10-07 Paul Boddie Created a separate method for identifying unbound method providers.
     1 import operator     2      3 def f(a, op, b):     4     return op(a, b)     5      6 f(1, operator.add, 2)     7 f(1, operator.sub, 2)