Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
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
()