Lichen

tests/operator_syntax.py

1047:101519d4e2c2
5 months ago Paul Boddie Employ generic operations instead of operator method calls.
     1 print 1 == 1                    # True     2 print 1 != 1                    # False     3 print 1 == "one"                # False     4 print 1 != "one"                # True