sol2/demo_docs/source/test_py_module/test.py

21 lines
464 B
Python
Raw Normal View History

2013-11-04 11:39:37 +08:00
# -*- 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."""