Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
9982f279
Commit
9982f279
authored
Feb 22, 2014
by
Damien George
Browse files
Merge branch 'master' of github.com:micropython/micropython
parents
438c88dd
135002a0
Changes
1
Hide whitespace changes
Inline
Side-by-side
tests/basics/class-super.py
0 → 100644
View file @
9982f279
class
Base
:
def
meth
(
self
):
print
(
"in Base meth"
)
class
Sub
(
Base
):
def
meth
(
self
):
print
(
"in Sub meth"
)
return
super
().
meth
()
a
=
Sub
()
a
.
meth
()
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment