Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
python
/
testData
/
quickdoc
/
ClassUndocumentedEmptyConstructor.py
blob: fcfc6d484f8056b34922a70727d9960363445662 [
file
] [
log
] [
blame
]
Tor Norbye
3a2425a
2013-11-04 10:16:08 -0800
[
diff
] [
blame^
]
1
class
Moo
(
object
):
2
def
__init__
(
self
):
3
"Doc of Moo()"
4
pass
5
6
7
class
Foo
(
Moo
):
8
# no doc to inherit
9
def
__init__
(
self
):
10
# no direct doc
11
pass
12
13
<
the_ref
>
Foo
()