Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
quickdoc
/
ClassUndocumentedEmptyConstructor.py
blob: fcfc6d484f8056b34922a70727d9960363445662 [
file
] [
log
] [
blame
]
class
Moo
(
object
):
def
__init__
(
self
):
"Doc of Moo()"
pass
class
Foo
(
Moo
):
# no doc to inherit
def
__init__
(
self
):
# no direct doc
pass
<
the_ref
>
Foo
()