blob: 8601e3f7abb34c62fdf201f125bf913271621b70 [file] [log] [blame]
Georg Brandlb533e262008-05-25 18:19:30 +00001"""This is a test module for test_pydoc"""
2
3__author__ = "Benjamin Peterson"
4__credits__ = "Nobody"
5__version__ = "1.2.3.4"
6
7
8class A:
9 """Hello and goodbye"""
10 def __init__():
11 """Wow, I have no function!"""
12 pass
13
14class B(object):
15 NO_MEANING = "eggs"
16 pass
17
18def doc_func():
19 """
20 This function solves all of the world's problems:
21 hunger
22 lack of Python
23 war
24 """
25
26def nodoc_func():
27 pass
28"""This is a test module for test_pydoc"""
29
30__author__ = "Benjamin Peterson"
31__credits__ = "Nobody"
32__version__ = "1.2.3.4"
33
34
35class A:
36 """Hello and goodbye"""
37 def __init__():
38 """Wow, I have no function!"""
39 pass
40
41class B(object):
42 NO_MEANING = "eggs"
43 pass
44
45def doc_func():
46 """
47 This function solves all of the world's problems:
48 hunger
49 lack of Python
50 war
51 """
52
53def nodoc_func():
54 pass