Lichen

tests/operators.py

73:c2f5fbca47cf
2016-09-30 Paul Boddie Permit class base lookup within local class namespaces.
     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)