MITK-IGT
IGT Extension of MITK
Loading...
Searching...
No Matches
docstring.py
Go to the documentation of this file.
1"""@package docstring
2Documentation for this module.
3
4More details.
5"""
6
7def func():
8 """Documentation for a function.
9
10 More details.
11 """
12 pass
13
14class PyClass:
15 """Documentation for a class.
16
17 More details.
18 """
19
20 def __init__(self):
21 """The constructor."""
22 self._memVar = 0;
23
24 def PyMethod(self):
25 """Documentation for a method."""
26 pass
27