]> git.proxmox.com Git - mirror_edk2.git/blame - AppPkg/Applications/Python/Python-2.7.2/Lib/test/pydoc_mod.py
EmbeddedPkg: Extend NvVarStoreFormattedLib LIBRARY_CLASS
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Lib / test / pydoc_mod.py
CommitLineData
4710c53d 1"""This is a test module for test_pydoc"""\r
2\r
3__author__ = "Benjamin Peterson"\r
4__credits__ = "Nobody"\r
5__version__ = "1.2.3.4"\r
6\r
7\r
8class A:\r
9 """Hello and goodbye"""\r
10 def __init__():\r
11 """Wow, I have no function!"""\r
12 pass\r
13\r
14class B(object):\r
15 NO_MEANING = "eggs"\r
16 pass\r
17\r
18def doc_func():\r
19 """\r
20 This function solves all of the world's problems:\r
21 hunger\r
22 lack of Python\r
23 war\r
24 """\r
25\r
26def nodoc_func():\r
27 pass\r