Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
python
/
testData
/
quickdoc
/
InheritedMethod.py
blob: e96079bcbb360e236779d98ae15de72ab3242503 [
file
] [
log
] [
blame
]
# copied doc of inherited method
class
A
:
def
foo
(
self
):
"<the_doc>Doc from A.foo."
pass
class
B
(
A
):
def
foo
(
self
):
return
None
b
=
B
()
b
.<
the_ref
>
foo
()