Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
python
/
testData
/
resolve
/
SuperMetaClass.py
blob: cb58231a416fab21ff1d44b8f6a4468d7f9af515 [
file
] [
log
] [
blame
]
Tor Norbye
3a2425a
2013-11-04 10:16:08 -0800
[
diff
] [
blame^
]
1
__metaclass__
=
type
2
3
class
A
:
4
def
foo
(
self
):
5
print
"foo"
6
7
class
B
(
A
):
8
def
foo
(
self
):
9
super
(
B
,
self
).
foo
()
10
# <ref>
11
12
B
().
foo
()