Lichen

tests/operators.py

304:e4bad4af5d43
2016-12-03 Paul Boddie Changed the dict implementation to not use native functions or types directly for its representation.
     1 import operator     2      3 def f(a, op, b):     4     return op(a, b)     5      6 print f(1, operator.add, 2) # 3     7 print f(1, operator.sub, 2) # -1