Lichen

tests/function_names.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 def f():     2     return 123     3      4 def g():     5     return 456     6      7 def h():     8     return f()     9     10 print h()                           # 123    11     12 f = g    13     14 print h()                           # 456