Chameleon

Chameleon Svn Source Tree

Root/branches/xZenu/src/util/doxygen/examples/docstring.py

Source at commit 1406 created 12 years 10 months ago.
By meklort, Revert drivers.c so that kexts are only loaded when OSBundleRequired is set and that value is not safe mode. Added some comments about it too.
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
28

Archive Download this file

Revision: 1406