Lichen

tests/operator_syntax.py

318:feefdbfb5934
2016-12-05 Paul Boddie Encode type attributes explicitly, avoiding identification issues when classes are defined in locations that are reused for other objects.
     1 print 1 == 1                    # True     2 print 1 != 1                    # False     3 print 1 == "one"                # False     4 print 1 != "one"                # True