diff options
author | Damien George <damien.p.george@gmail.com> | 2014-01-19 17:41:01 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-01-19 17:41:01 +0000 |
commit | 5f7e8dc176661b49e12a0d8425101799ff176d19 (patch) | |
tree | 0fd3daa844300d62a3836b5bb16c3c7be2b875cb /tests/basics/class_inherit1.py | |
parent | b2ebb161d494864cdbee05ee8b74a775845e238e (diff) | |
parent | db796ef84d1737edc4ee44f1b53ff0c1fddb349c (diff) |
Merge branch 'master' of github.com:micropython/micropython
Diffstat (limited to 'tests/basics/class_inherit1.py')
-rw-r--r-- | tests/basics/class_inherit1.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/basics/class_inherit1.py b/tests/basics/class_inherit1.py new file mode 100644 index 000000000..9ca2d9f14 --- /dev/null +++ b/tests/basics/class_inherit1.py @@ -0,0 +1,21 @@ +class A: + def __init__(self, x): + print('A init', x) + self.x = x + + def f(self): + print(self.x, self.y) + +class B(A): + def __init__(self, x, y): + A.__init__(self, x) + print('B init', x, y) + self.y = y + + def g(self): + print(self.x, self.y) + +A(1) +b = B(1, 2) +b.f() +b.g() |