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