Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
python
/
testData
/
quickdoc
/
InheritedMethod.py
blob: e96079bcbb360e236779d98ae15de72ab3242503 [
file
] [
log
] [
blame
]
Tor Norbye
3a2425a
2013-11-04 10:16:08 -0800
[
diff
] [
blame^
]
1
# copied doc of inherited method
2
class
A
:
3
def
foo
(
self
):
4
"<the_doc>Doc from A.foo."
5
pass
6
7
class
B
(
A
):
8
def
foo
(
self
):
9
return
None
10
11
b
=
B
()
12
b
.<
the_ref
>
foo
()