Lichen

tests/operator_syntax.py

295:cb64d3e04c11
2016-12-01 Paul Boddie Supported Sliceobj usage, introduced slice step information to __getslice__. Added tests involving slices.
     1 print 1 == 1                    # True     2 print 1 != 1                    # False     3 print 1 == "one"                # False     4 print 1 != "one"                # True