Lichen

tests/buffer.py

588:316c1c90b643
2017-02-17 Paul Boddie Eliminated superfluous accessor instructions loading static invocation targets. Added a test of nested calls employing explicitly retained contexts. method-wrapper-for-context
     1 b = buffer()     2 b.append("Hello")     3 b.append(" ")     4 b.append("world")     5 b.append("!")     6 print b                 # Hello world!     7      8 b = buffer(["Hello "])     9 print repr(b)           # buffer(["Hello "])    10     11 b2 = buffer(["world!"])    12 b.append(b2)    13 print b                 # Hello world!