micropython

tests/call_method_ref.py

217:62219b8d6baf
2009-05-17 Paul Boddie Fixed context detection in CheckFrame.
     1 #!/usr/bin/env python     2      3 class C:     4     def f(self, a, b, c):     5         self.a = a     6         self.b = b     7         self.c = c     8      9 c = C()    10     11 f = c.f    12 f(1, 2, 3)    13     14 # vim: tabstop=4 expandtab shiftwidth=4