mirror of
https://github.com/ThePhD/sol2.git
synced 2024-03-22 13:10:44 +08:00
21 lines
464 B
Python
21 lines
464 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
class Foo:
|
||
|
"""Docstring for class Foo."""
|
||
|
|
||
|
#: Doc comment for class attribute Foo.bar.
|
||
|
#: It can have multiple lines.
|
||
|
bar = 1
|
||
|
|
||
|
flox = 1.5 #: Doc comment for Foo.flox. One line only.
|
||
|
|
||
|
baz = 2
|
||
|
"""Docstring for class attribute Foo.baz."""
|
||
|
|
||
|
def __init__(self):
|
||
|
#: Doc comment for instance attribute qux.
|
||
|
self.qux = 3
|
||
|
|
||
|
self.spam = 4
|
||
|
"""Docstring for instance attribute spam."""
|