Lichen

tests/name_encoding.py

601:adcdaeb19307
2017-02-19 Paul Boddie Fixed the context test and set operation to replace the local context with any applicable attribute context. Added a test of method rebinding that requires this fix. method-wrapper-for-context
     1 class C:     2     def f(self):     3         return 1     4      5 def C_f():     6     return 2     7      8 def C__f():     9     return 3    10     11 c = C()    12 print c.f()    13 print C_f()    14 print C__f()