Lichen

tests/operator_syntax.py

303:c07a749f5bd0
2016-12-02 Paul Boddie Use __data__ attributes with native functions apart from when __data__ needs replacing (such as in the list append and concatenation functions).
     1 print 1 == 1                    # True     2 print 1 != 1                    # False     3 print 1 == "one"                # False     4 print 1 != "one"                # True