micropython

Change of tests/call_method_self.py

208:eb7b56b0caa3
tests/call_method_self.py
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/tests/call_method_self.py	Fri May 01 02:38:05 2009 +0200
     1.3 @@ -0,0 +1,15 @@
     1.4 +#!/usr/bin/env python
     1.5 +
     1.6 +class C:
     1.7 +    def f(self, a, b, c):
     1.8 +        self.g(a, b, c)
     1.9 +
    1.10 +    def g(self, a, b, c):
    1.11 +        self.a = a
    1.12 +        self.b = b
    1.13 +        self.c = c
    1.14 +
    1.15 +c = C()
    1.16 +c.f(1, 2, 3)
    1.17 +
    1.18 +# vim: tabstop=4 expandtab shiftwidth=4